ai-agent 0.88.0

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(dead_code)]

pub async fn save_conversation(
    _messages: &[Message],
) -> Result<String, Box<dyn std::error::Error>> {
    Ok(String::new())
}

#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct Message {
    pub role: String,
    pub content: String,
}