//! Configuration module for Enki Runtime.
//!
//! This module provides TOML-based configuration for agents and meshes.
//!
//! # Example TOML Configuration
//!
//! ```toml
//! [[agents]]
//! name = "researcher"
//! model = "ollama::gemma3:latest"
//! system_prompt = "You are a research assistant."
//! temperature = 0.7
//! max_tokens = 1024
//! ```
//!
//! # Usage
//!
//! ```rust,no_run
//! use enki_runtime::config::{AgentConfig, MeshConfig};
//!
//! // Load a single agent config
//! let agent = AgentConfig::from_file("agent.toml").unwrap();
//!
//! // Load a multi-agent mesh config
//! let mesh = MeshConfig::from_file("agents.toml").unwrap();
//! ```
pub use AgentConfig;
pub use ;
pub use ;
pub use MeshConfig;