Skip to main content

phi_agent/agent/
mod.rs

1//! Agent construction and lifecycle management.
2//!
3//! This module provides:
4//! - [`base_agent_builder`] — a pre-configured `AgentBuilder` factory
5//! - [`PhiAgent`] — a thin wrapper around `AgentRuntime` with a simplified API
6//! - [`PhiAgentConfig`] — tool-agnostic agent configuration
7
8pub mod builder;
9pub mod factory;
10
11pub use builder::base_agent_builder;
12pub use factory::{PhiAgent, PhiAgentConfig};