phi-core 0.7.0

Simple, effective agent loop with tool execution and event streaming
Documentation
//! Configuration module — TOML/JSON/YAML config → Agent construction pipeline.
//!
//! # Overview
//!
//! This module provides a declarative configuration system for building agents:
//!
//! 1. **Schema** ([`AgentConfig`]) — the deserialization target for config files
//! 2. **Parser** ([`parse_config`], [`parse_config_file`]) — multi-format parsing with env var substitution
//! 3. **Builder** ([`agent_from_config`]) — constructs `Arc<dyn Agent>` from parsed config
//!
//! # Example
//!
//! ```ignore
//! let config = parse_config_file(Path::new("agent.toml"))?;
//! let agent = agent_from_config(&config)?;
//! ```

mod builder;
mod parser;
pub mod reference;
mod schema;

pub use builder::{
    agent_from_config, agent_from_config_with_registry, agents_from_config, ConfigError,
};
pub use parser::{parse_config, parse_config_auto, parse_config_file, ConfigFormat};
pub use reference::{parse_config_ref, ConfigRef};
pub use schema::{
    AgentConfig, AgentInstanceSection, AgentSection, CacheSection, CallbacksSection,
    CompactionInstanceSection, CompactionSection, CompatSection, CostSection, ExecutionSection,
    HooksSection, ProfileInstanceSection, ProfileSection, PromptInstanceSection, ProviderInstance,
    ProviderSection, RetrySection, SessionSection, SkillsSection, StrategyBlockSection,
    StrategyInstanceSection, SubAgentsSection, SystemPromptSection, SystemPromptStrategySection,
    ToolInstance, ToolsSection,
};