symbi-runtime 0.6.1

Agent Runtime System for the Symbi platform
//! Policy-driven routing module for SLM-first architecture
//!
//! This module provides intelligent routing between Small Language Models (SLMs)
//! and Large Language Models (LLMs) based on configurable policies, task types,
//! resource constraints, and confidence thresholds.

pub mod engine;
pub mod classifier;
pub mod decision;
pub mod error;
pub mod confidence;
pub mod config;
pub mod policy;

pub use engine::*;
pub use classifier::*;
pub use decision::*;
pub use error::*;
pub use confidence::*;
pub use config::*;
pub use policy::*;