sovereign-ai 0.2.1

The unified SDK for the Sovereign AI Mesh.
Documentation
// ================================================================================
// PRODUCT  : sovereign-stack:sovereign-ai
// COMPONENT: The Sovereign AI Toolkit (Umbrella)
// FILE     : ss-ai-gateway/crates/sovereign-ai/src/lib.rs
// ROLE     : Library entry point for the umbrella AI toolkit.
// PURPOSE  : Explicitly defines and re-exports the public API surface.
// AUTHOR   : Chamara Somaratne assisted by Gemini, Ashby, Serge & Ciara
//            (Sovereign Gestalt)
// LICENSE  : Apache-2.0
// ================================================================================

//! sovereign-ai: The Sovereign AI Toolkit
//! The unified SDK for building mathematically secure, local-first AI applications.

// ==============================================================================
// PHASE 1: PERSONA RE-EXPORTS
// ==============================================================================
#[cfg(feature = "personas")]
pub use ai_personas::Persona;

// ==============================================================================
// PHASE 2: ROUTER RE-EXPORTS
// ==============================================================================
#[cfg(feature = "router")]
pub use ai_router::{Envelope, Route, Router, RawConfig, ModelDef};