spec_ai_core/
lib.rs

1pub mod agent;
2pub mod bootstrap_self;
3pub mod cli;
4pub mod embeddings;
5#[cfg(feature = "api")]
6pub mod mesh;
7pub mod spec;
8#[cfg(feature = "api")]
9pub mod sync;
10pub mod test_utils;
11pub mod tools;
12
13/// Reserved namespace for graphs that participate in distributed sync.
14pub const SYNC_GRAPH_NAMESPACE: &str = "graph-sync";
15
16pub use spec_ai_config::{config, persistence, types};
17pub use spec_ai_policy::{plugin, policy};