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 stream_adapter;
18
19pub use context::*;
20pub use error::*;
21pub use registry::*;