layer0 0.4.0

Protocol traits for composable agentic AI systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! In-memory implementations for testing.
//!
//! Available behind the `test-utils` feature flag. These are minimal
//! implementations that prove the trait APIs are usable.

mod echo_operator;
mod in_memory_store;
mod local_environment;
mod local_orchestrator;
mod logging_hook;

pub use echo_operator::EchoOperator;
pub use in_memory_store::InMemoryStore;
pub use local_environment::LocalEnvironment;
pub use local_orchestrator::LocalOrchestrator;
pub use logging_hook::LoggingHook;