rho-coding-agent 0.28.1

A lightweight agent harness inspired by Pi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod convert;
mod stream;
mod types;

pub(crate) use convert::{
    convert_anthropic_response, split_system_and_messages, to_anthropic_tool,
};
pub(crate) use stream::collect_anthropic_sse_response;
pub(crate) use types::{
    AnthropicCacheControl, AnthropicContentBlock, AnthropicMessage, AnthropicRequest,
    AnthropicResponse, AnthropicRole, AnthropicSystemBlock,
};