spec-ai 0.6.12

A framework for building AI agents with structured outputs, policy enforcement, and execution tracking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod agent;
pub mod bootstrap_self;
pub mod cli;
pub mod embeddings;
#[cfg(feature = "api")]
pub mod mesh;
pub mod spec;
#[cfg(feature = "api")]
pub mod sync;
pub mod test_utils;
pub mod tools;

/// Reserved namespace for graphs that participate in distributed sync.
pub const SYNC_GRAPH_NAMESPACE: &str = "graph-sync";

pub use crate::spec_ai_config::{config, persistence, types};
pub use crate::spec_ai_policy::{plugin, policy};