Skip to main content

erio_core/
lib.rs

1#![doc = include_str!("../README.md")]
2
3//! Erio Core - Core types, traits, and error handling for the agent runtime.
4
5pub mod config;
6pub mod error;
7pub mod message;
8
9pub use config::RetryConfig;
10pub use error::{CoreError, ToolError};
11pub use message::{Content, Message, Role, ToolCall};