ai-agent 0.13.4

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
5
6
//! Message queue types

use std::collections::HashMap;

/// A message queue entry is a record with string keys and arbitrary values
pub type MessageQueueEntry = HashMap<String, serde_json::Value>;