agm-core 1.1.0

Core library for parsing, validating, loading, and rendering AGM (Agent Graph Memory) files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! agm-core: parsing, validation, loading, rendering, and graph operations for AGM files.

pub mod diff;
pub mod error;
pub mod graph;
pub mod import;
pub mod loader;
pub mod memory;
pub mod model;
pub mod parser;
pub mod renderer;
pub mod schema;
pub mod validator;

#[cfg(feature = "compiler")]
pub mod compiler;