ceylon_next/runner/
mod.rs

1//! Agent runner with TOML configuration support
2//!
3//! This module provides the `AgentRunner` for executing Ceylon agents based on
4//! TOML configuration files.
5
6mod config;
7mod runner;
8
9// Re-export main types
10pub use config::{
11    AgentConfig as RunnerAgentConfig, BuildConfig, CeylonConfig, MemoryConfig, PackageConfig,
12    ToolsConfig,
13};
14pub use runner::AgentRunner;