car-ir 0.15.1

Agent IR types for Common Agent Runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Agent IR types for Common Agent Runtime.
//!
//! The intermediate representation sits between model intent and runtime execution.
//! It encodes richer semantics than raw function-call JSON: preconditions, expected
//! effects, idempotency, failure behavior, and state dependencies.

mod actions;
pub mod builtins;
mod dag;
pub mod json_extract;
pub mod linalg;
pub mod outcome;
pub mod precondition;
pub mod rubric;

pub use actions::*;
pub use dag::build_dag;
pub use outcome::{AgentOutcome, Evidence, EvidenceKind, OutcomeMetrics, OutcomeStatus};