rho-coding-agent 1.0.4

A lightweight agent harness inspired by Pi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! OpenAI Responses protocol boundary.

#[cfg(test)]
pub(crate) use super::openai_shared::stream::extract_sse_text;

pub(crate) use super::openai_shared::{
    convert::{
        codex_input_items, codex_input_items_for_target, codex_reasoning_param,
        to_responses_lite_tool, to_responses_tool,
    },
    stream::{
        collect_codex_sse_response, handle_codex_sse_line, handle_codex_sse_value,
        CodexSseResponse, CodexSseState,
    },
};