Skip to main content

matrixcode_core/agent/
mod.rs

1//! Agent module - event-driven AI agent implementation.
2//!
3//! Provides Agent struct with streaming responses, tool execution, and event output.
4
5mod builder;
6mod helpers;
7mod run;
8mod streaming;
9mod tools;
10mod types;
11
12// Re-export public items from types directly
13pub use types::{Agent, AgentBuilder};