spec-ai 0.6.13

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
pub mod graph_store;
pub mod types;
pub mod vector_clock;

pub use graph_store::{
    ChangelogEntry, GraphSyncConfig, KnowledgeGraphStore, SyncStateRecord, SyncedEdgeRecord,
    SyncedNodeRecord,
};
pub use types::{
    EdgeType, GraphEdge, GraphNode, GraphPath, GraphQuery, GraphQueryResult, GraphQueryReturnType,
    NodeType, TraversalDirection,
};
pub use vector_clock::{ClockOrder, VectorClock};