rho-coding-agent 0.29.1

A lightweight agent harness inspired by Pi
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Wire protocols implemented by model providers.
//!
//! Protocol modules translate Rho's canonical model request and response types
//! to API-specific wire shapes. They do not own credentials, endpoint selection,
//! retry policy, or provider registration.

pub(crate) mod anthropic_messages;
pub(crate) mod gemini_generate_content;
pub(crate) mod openai_chat;
pub(crate) mod openai_responses;
mod openai_shared;