gproxy-protocol 2.4.4

GPROXY protocol types and endpoint metadata
Documentation
//! OpenAI provider wire models.
//!
//! These modules mirror OpenAI JSON wire shapes only. Provider conversion and
//! routing logic belongs outside this provider model layer.

mod common;
mod compact;
mod conversation;
mod count_tokens;
mod embeddings;
pub mod generate_content;
mod images;
mod models;

pub use common::*;
pub use compact::*;
pub use conversation::*;
pub use count_tokens::*;
pub use embeddings::*;
pub use generate_content::*;
pub use images::*;
pub use models::*;