You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Editorial pass after the 0.6.x feature wave.
- README: grammar fix on the engine-features sentence; Next-steps
Concepts/Examples bullets updated to include the 0.6.x topics
(parallel branches, LLMs, prompts) and link to docs/examples
rather than the GitHub directory.
- Quickstart: Concepts and Examples link lists refreshed (was
missing parallel-branches/llms/prompts/checkpointing; said
"five demos" with ten now shipped).
- concepts/index: added Prompts; expanded llms and checkpointing
blurbs.
- concepts/graphs: added the four 0.6.x builder methods
(add_fan_out_node, add_parallel_branches_node, with_checkpointer,
with_state_migration) to the methods list.
- concepts/composition: appended a "Related composition primitives"
section pointing at fan-out and parallel-branches.
- concepts/fan-out: switched code samples to the canonical
builder.add_fan_out_node(...) API.
- concepts/parallel-branches, observability: em-dash sweep.
- concepts/llms: new Tool calling section between Structured output
and Content blocks; refreshed example links to point at
docs/examples instead of the GitHub repo.
state-and-reducers, checkpointing, and prompts pages audited and
left untouched (already accurate against v0.6.x).
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
11
11
### OpenArmature is a workflow framework for LLM pipelines and tool-calling agents.
12
12
13
-
Typed state, compile-time topology checks, and observability and crash-safe checkpoints are baked into the engine. The graph layer itself has no concept of LLMs or tools, so the same primitives drive deterministic ETL pipelines and tool-calling agents alike.
13
+
Typed state, compile-time topology checks, observability, and crash-safe checkpoints are baked into the engine. The graph layer itself has no concept of LLMs or tools, so the same primitives drive deterministic ETL pipelines and tool-calling agents alike.
14
14
15
15
This Python package is the reference implementation. The behavioral contract is specified in [openarmature-spec](https://github.com/LunarCommand/openarmature-spec) and verified by conformance fixtures.
16
16
@@ -187,8 +187,8 @@ A few things to notice:
187
187
## Next steps
188
188
189
189
-**Quickstart**: build your first graph end-to-end. [openarmature.ai/getting-started](https://openarmature.ai/getting-started/)
-**Model Providers**: implement the Provider Protocol for a custom LLM backend. [openarmature.ai/model-providers/authoring](https://openarmature.ai/model-providers/authoring/)
192
192
-**API reference**: auto-generated from docstrings. [openarmature.ai/reference](https://openarmature.ai/reference/)
-**Examples**: ten runnable demos with walk-throughs. [openarmature.ai/examples](https://openarmature.ai/examples/) (source at [./examples/](./examples/))
194
194
-**Spec**: behavioral contract this implementation conforms to. [LunarCommand/openarmature-spec](https://github.com/LunarCommand/openarmature-spec)
0 commit comments