codexia 1.0.3

OpenAI- and Anthropic-compatible local API gateway backed by Codex OAuth.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod batch;
mod conversion;
mod storage;

pub(super) use batch::{batch_results_url, build_batch_id, run_message_batch_worker};
pub(super) use conversion::{
    anthropic_responses_request, collect_response_input_items, compact_response_items,
    estimate_response_input_tokens, image_generation_responses_request, load_previous_response,
    response_request_requires_raw_mode, responses_to_chat_request,
};
pub(super) use storage::{
    build_response_id, build_responses_output_items, maybe_store_response, response_object,
    response_object_from_chat, response_object_from_upstream, stored_response_input_items,
};