Extract agent, compact, embed, task, and modes modules from single service.rs files into focused sub-modules. Add orao module for O1-like reasoning loop. Move RigAgentService to rig_tool.rs.
5 lines
158 B
Rust
5 lines
158 B
Rust
//! Rig-based agent using rig's built-in Agent with full feature support.
|
|
|
|
pub mod rig_tool;
|
|
pub use rig_tool::{AgentResponse, RigAgentService, StreamChunk};
|