Expand description
AINL graph-memory substrate - Spike implementation
Proof-of-concept: Agent memory as execution graph nodes.
Every delegation, tool call, and agent turn becomes a typed graph node.
This spike proves the concept before extraction to ainl-memory crate.
Structs§
- Ainl
Edge - Typed edge connecting memory nodes
- Ainl
Memory Node - A node in the AINL memory graph
- Sqlite
Graph Store - SQLite implementation of GraphStore (spike - uses existing connection)
Enums§
- Ainl
Node Type - Core AINL node types - the vocabulary of agent memory
Traits§
- Graph
Store - Graph memory storage - trait for swappable backends (Note: Send + Sync removed for spike - will use Arc<Mutex<>> in production)