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
//! Provider runtimes own authentication, endpoints, retries, and transport policy.
//!
//! Wire-format conversion belongs in [`crate::protocol`]. Providers may share a
//! protocol while retaining different authentication and runtime behavior.

pub(crate) mod anthropic;
mod factory;
pub(crate) mod github_copilot;
pub(crate) mod openai;
pub(crate) mod xai;

pub(crate) use factory::{build_provider, UnavailableProvider};