Skip to main content

gproxy_transform/transform/
mod.rs

1//! Provider-to-provider protocol transforms.
2//!
3//! Protocol modules model provider wire shapes only. This module owns
4//! conversion between those wire shapes, organized by operation capability.
5
6pub mod common;
7pub mod compact;
8mod context;
9pub mod count_tokens;
10pub mod dispatch;
11pub mod embeddings;
12mod error;
13pub mod generate_content;
14pub mod images;
15pub mod models;
16mod registry;
17pub mod routing;
18pub mod stream_adapter;
19
20pub use context::*;
21pub use error::*;
22pub use registry::*;