daimon 0.16.0

A Rust-native AI agent framework
Documentation
1
2
3
4
5
6
7
8
//! Core message and request types shared across all model providers.
//!
//! These types are defined in [`daimon_core`] and re-exported here for
//! backward compatibility.

pub use daimon_core::{
    ChatRequest, ChatResponse, Message, Role, StopReason, ToolSpec, Usage,
};