byokey-proxy 1.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`] — `OpenAI`-compatible API.
//! - [`amp`]                              — Amp CLI / `AmpCode` proxy.
//! - [`management`]                       — BYOKEY management API (`/v0/management/*`).

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