Skip to main content

phi_core/agents/
mod.rs

1mod agent;
2mod basic_agent;
3pub mod profile;
4pub mod sub_agent;
5pub mod system_prompt;
6
7pub use agent::{Agent, AgentBuildError, QueueMode};
8pub use basic_agent::BasicAgent;
9pub use profile::AgentProfile;
10pub use sub_agent::SubAgentTool;
11pub use system_prompt::{
12    AgentPromptStrategy, CustomPromptStrategy, MinimalPromptStrategy, PromptBlockDef, SystemPrompt,
13    SystemPromptStrategy,
14};