Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions examples/fan-out-with-retry/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,11 +336,14 @@ def build_graph(mode: str = "fail_fast") -> CompiledGraph[BatchState]:
# partial in place of the instance result, so the batch finishes
# instead of aborting (fail_fast) or dropping the instance
# (collect). Retry stays inner so it still sees raw transients
# first. The degraded mapping is keyed the way the fan-out
# projects an instance: the collect_field (``summary``) plus
# each parent extra_outputs key (``topics``).
# first. The degraded mapping is keyed in the subgraph's
# field-name space (proposal 0066): the collect_field (``summary``)
# plus each extra_outputs subgraph field (``topic``, which the
# fan-out projects to the parent ``topics`` list). Supplying
# ``topic`` keeps the slot non-null so the ``list[str]`` parent
# field validates (an omitted source would be a null slot, §9.3).
degrade = FailureIsolationMiddleware(
degraded_update={"summary": "(unavailable)", "topics": "other"},
degraded_update={"summary": "(unavailable)", "topic": "other"},
event_name="headline_degraded",
)
instance_middleware = (degrade, retry, timing)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ build-backend = "hatchling.build"

[project]
name = "openarmature"
version = "0.14.0rc1"
version = "0.14.0"
description = "Workflow framework for LLM pipelines and tool-calling agents."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
2 changes: 1 addition & 1 deletion src/openarmature/AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OpenArmature — Agent documentation

*This is the agent guide bundled with the openarmature Python package, version 0.14.0rc1 (spec v0.60.0). For the full docs site see [openarmature.ai](https://openarmature.ai). For the canonical spec text see [openarmature.org/capabilities](https://openarmature.org/capabilities/). For project-specific conventions for the code you're editing, see the host project's `AGENTS.md` or `CLAUDE.md`.*
*This is the agent guide bundled with the openarmature Python package, version 0.14.0 (spec v0.60.0). For the full docs site see [openarmature.ai](https://openarmature.ai). For the canonical spec text see [openarmature.org/capabilities](https://openarmature.org/capabilities/). For project-specific conventions for the code you're editing, see the host project's `AGENTS.md` or `CLAUDE.md`.*

## TL;DR

Expand Down
2 changes: 1 addition & 1 deletion src/openarmature/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
sessions opening the project find the bundled docs automatically.
"""

__version__ = "0.14.0rc1"
__version__ = "0.14.0"
__spec_version__ = "0.60.0"
# Proposal 0052 (spec observability §5.1 / §8.4.1): canonical
# package-registry name for this implementation. Surfaces on every
Expand Down
2 changes: 1 addition & 1 deletion tests/test_smoke.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


def test_package_versions() -> None:
assert openarmature.__version__ == "0.14.0rc1"
assert openarmature.__version__ == "0.14.0"
assert openarmature.__spec_version__ == "0.60.0"


Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.