rho-coding-agent 0.29.1

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

pub(crate) use super::openai_shared::{
    convert::{convert_openai_response, to_openai_message_for_target, to_openai_tool},
    stream::{convert_streamed_response, handle_openai_stream_line, invalid_stream_utf8},
};
pub(crate) use types::{
    ChatRequest, ChatResponse, ChatStreamOptions, OpenAiFunctionCall, OpenAiMessage, OpenAiTool,
    OpenAiToolCall, OpenAiToolFunction,
};