gitdataai/libs/agent/agent/mod.rs
ZhenYi d45e9e28f4 refactor(agent): split monolithic service files into specialized modules
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.
2026-05-11 17:04:57 +08:00

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};