mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-07-29 17:36:02 +00:00
fix: Correct YAML format in demo_loop_timer.yaml
- Remove invalid 'version' field - Restructure to match DevAll YAML schema (graph at top level) - Move start/end nodes to end of graph block - Validation now passes: 'Workflow OK. Design is valid.'
This commit is contained in:
parent
1abf173a14
commit
f7ece916ce
@ -1,10 +1,4 @@
|
|||||||
version: 0.4.0
|
|
||||||
graph:
|
graph:
|
||||||
start:
|
|
||||||
- StandardWriter
|
|
||||||
end:
|
|
||||||
- StandardFinalizer
|
|
||||||
- PassthroughFinalizer
|
|
||||||
id: loop_timer_comprehensive_demo
|
id: loop_timer_comprehensive_demo
|
||||||
description: |
|
description: |
|
||||||
Comprehensive LoopTimer demonstration with both standard and passthrough modes.
|
Comprehensive LoopTimer demonstration with both standard and passthrough modes.
|
||||||
@ -22,8 +16,8 @@ graph:
|
|||||||
The Passthrough Timer Gate allows messages through immediately, maintains a parallel
|
The Passthrough Timer Gate allows messages through immediately, maintains a parallel
|
||||||
feedback loop (PassthroughCritic → PassthroughWriter), and after 2 minutes emits a
|
feedback loop (PassthroughCritic → PassthroughWriter), and after 2 minutes emits a
|
||||||
time limit message before becoming transparent.
|
time limit message before becoming transparent.
|
||||||
is_majority_voting: false
|
|
||||||
log_level: INFO
|
log_level: INFO
|
||||||
|
is_majority_voting: false
|
||||||
nodes:
|
nodes:
|
||||||
# ===== STANDARD MODE BRANCH =====
|
# ===== STANDARD MODE BRANCH =====
|
||||||
- id: StandardWriter
|
- id: StandardWriter
|
||||||
@ -135,3 +129,9 @@ graph:
|
|||||||
# Timer gate output (immediate passthrough + timer message at 2 min)
|
# Timer gate output (immediate passthrough + timer message at 2 min)
|
||||||
- from: Passthrough Timer Gate
|
- from: Passthrough Timer Gate
|
||||||
to: PassthroughFinalizer
|
to: PassthroughFinalizer
|
||||||
|
|
||||||
|
start:
|
||||||
|
- StandardWriter
|
||||||
|
end:
|
||||||
|
- StandardFinalizer
|
||||||
|
- PassthroughFinalizer
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user