feat: replace canonical workflow output bindings

This commit is contained in:
lda
2026-07-26 21:14:50 +07:00 Verified
parent 612139bec2
commit 7930f8575b
4 changed files with 711 additions and 2 deletions
+2 -1
View File
@@ -54,12 +54,13 @@ def validate_json_value_at_schema_path(
parts: Sequence[str],
value: object,
label: str,
schema_label: str = "capability input schema",
) -> None:
"""Validate one JSON-compatible literal against a selected schema path."""
fragment = schema_fragment_at_path(
schema,
parts,
label="capability input schema",
label=schema_label,
)
path = ".".join(parts) or "."
try: