gproxy-protocol 2.6.2

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 audio;
mod common;
mod compact;
mod conversation;
mod count_tokens;
mod embeddings;
pub mod generate_content;
mod images;
mod models;
mod rerank;

pub use audio::*;
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::*;
pub use rerank::*;