aiclient-api 0.1.0

A unified AI gateway daemon exposing OpenAI-compatible and Anthropic-compatible API endpoints, backed by GitHub Copilot and Kiro (AWS CodeWhisperer)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod anthropic_types;
pub mod from_anthropic;
pub mod from_openai;
pub mod openai_types;
pub mod stream;
pub mod to_anthropic;
pub mod to_openai;

pub use from_anthropic::from_anthropic;
pub use from_openai::from_openai;
pub use to_anthropic::to_anthropic;
pub use to_openai::to_openai;