mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-11 22:53:00 +00:00
Workflow LLM handlers build lithos requests, bill from lithos usage and cost, and classify failures from lithos `ErrorKind`. Model resolution and fallback use the fabro-llm selection and catalog helpers. Validation rules read the lithos catalog, and store fixtures use the new `BilledModelUsage` shape. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
25 lines
641 B
TOML
25 lines
641 B
TOML
[package]
|
|
name = "fabro-validate"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
publish = false
|
|
license.workspace = true
|
|
description = "Validation and lint rules for Fabro workflow graphs"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
fabro-acp = { path = "../fabro-acp", default-features = false }
|
|
fabro-graphviz = { path = "../fabro-graphviz" }
|
|
fabro-llm = { path = "../fabro-llm" }
|
|
fabro-types = { path = "../../foundation/fabro-types" }
|
|
serde = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
fabro-llm = { path = "../fabro-llm", features = ["test-support"] }
|
|
toml = { workspace = true }
|