//! LeLLM — Rust LLM orchestration framework.
//!
//! 默认开启 `provider`(core + provider 适配层)。
//!
//! ```toml
//! # 默认:core + provider
//! lellm = "0.1"
//!
//! # 需要 Agent 运行时
//! lellm = { version = "0.1", features = ["agent"] }
//!
//! # 全部启用
//! lellm = { version = "0.1", features = ["full"] }
//! ```
pub use lellm_core as core;
pub use lellm_provider as provider;
pub use lellm_agent as agent;
pub use lellm_macros as macros;