codex-convert-proxy 0.1.0

A high-performance proxy server that converts between different AI API formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Provider implementations for Chinese LLM services.

pub mod glm;
pub mod kimi;
pub mod deepseek;
pub mod minimax;
pub mod trait_;

pub use trait_::*;
pub use glm::GLMProvider;
pub use kimi::KimiProvider;
pub use deepseek::DeepSeekProvider;
pub use minimax::MiniMaxProvider;