byokey-proxy 2.0.0

Bring Your Own Keys — AI subscription-to-API proxy gateway
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! HTTP route handlers for all proxy endpoints.
//!
//! - [`chat`] / [`messages`] / [`models`] / [`responses`] — `OpenAI`- and
//!   Anthropic-compatible API.
//! - [`management`] — BYOKEY `ConnectRPC` management API.

pub(crate) mod chat;
pub mod management;
pub(crate) mod messages;
pub(crate) mod models;
pub(crate) mod responses;