reasonkit-core 0.1.8

The Reasoning Engine — Auditable Reasoning for Production AI | Rust-Native | Turn Prompts into Protocols
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! ARF (Autonomous Reasoning Framework) Module
//!
//! Migrated from arf-platform for integration into reasonkit-core.
//! Contains agent management, knowledge graphs, evolutionary algorithms,
//! and resilience patterns.

pub mod agency;
pub mod config;
pub mod evolution;
pub mod immune;
pub mod knowledge_graph;
pub mod runtime;
pub mod types;

pub use agency::*;
pub use knowledge_graph::*;