phi-core 0.7.0

Simple, effective agent loop with tool execution and event streaming
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod agent;
mod basic_agent;
pub mod profile;
pub mod sub_agent;
pub mod system_prompt;

pub use agent::{Agent, AgentBuildError, QueueMode};
pub use basic_agent::BasicAgent;
pub use profile::AgentProfile;
pub use sub_agent::SubAgentTool;
pub use system_prompt::{
    AgentPromptStrategy, CustomPromptStrategy, MinimalPromptStrategy, PromptBlockDef, SystemPrompt,
    SystemPromptStrategy,
};