oxi-sdk 0.14.0

oxi AI agent SDK — build isolated, multi-agent AI systems
1
2
3
4
5
6
7
8
9
10
11
//! Commonly used types

pub use crate::builder::{Oxi, OxiBuilder};
pub use crate::agent_builder::AgentBuilder;
pub use crate::tool_factory::{coding_tools, readonly_tools};
pub use oxi_agent::{
    Agent, AgentConfig, AgentEvent, AgentLoop,
    ToolRegistry, AgentTool, AgentToolResult, ToolError,
    SharedState, AgentState, ToolExecutionMode,
};
pub use oxi_ai::{Provider, Model, CompactionStrategy};