Browse Source

doc: fix graph engine readme (#26337)

tags/1.9.1
非法操作 1 month ago
parent
commit
272102c06d
No account linked to committer's email address
2 changed files with 4 additions and 4 deletions
  1. 3
    3
      api/core/workflow/README.md
  2. 1
    1
      api/core/workflow/graph_engine/layers/README.md

+ 3
- 3
api/core/workflow/README.md View File

@@ -60,8 +60,8 @@ Extensible middleware for cross-cutting concerns:

```python
engine = GraphEngine(graph)
engine.add_layer(DebugLoggingLayer(level="INFO"))
engine.add_layer(ExecutionLimitsLayer(max_nodes=100))
engine.layer(DebugLoggingLayer(level="INFO"))
engine.layer(ExecutionLimitsLayer(max_nodes=100))
```

### Event-Driven Architecture
@@ -117,7 +117,7 @@ The codebase enforces strict layering via import-linter:

1. Create class inheriting from `Layer` base
1. Override lifecycle methods: `on_graph_start()`, `on_event()`, `on_graph_end()`
1. Add to engine via `engine.add_layer()`
1. Add to engine via `engine.layer()`

### Debugging Workflow Execution


+ 1
- 1
api/core/workflow/graph_engine/layers/README.md View File

@@ -30,7 +30,7 @@ debug_layer = DebugLoggingLayer(
)

engine = GraphEngine(graph)
engine.add_layer(debug_layer)
engine.layer(debug_layer)
engine.run()
```


Loading…
Cancel
Save