imp-core 0.2.0

Agent engine for imp: loop, tools, sessions, hooks, context, and SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Workflow-first runtime data model.
//!
//! The workflow module starts as a lightweight contract model that can wrap
//! existing imp runs without changing agent behavior. Later workflow runtime
//! features (policy, verification, evidence, child runs) build on these types.

mod contract;
mod verification;
mod verification_runner;

pub use contract::*;
pub use verification::*;
pub use verification_runner::*;