batuta 0.7.3

Sovereign AI orchestration: autonomous agents, ML serving, code analysis, and transpilation pipelines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Knowledge Graph for Sovereign AI Stack
//!
//! Provides component registry, capability indexing, and relationship mapping
//! between all stack components.

mod components;
mod domain_mappings;
mod integrations;
mod types;

#[cfg(test)]
mod tests;

pub use types::KnowledgeGraph;