stakai 0.3.24-beta.2

A provider-agnostic Rust SDK for AI completions with streaming support - Built by Stakpak
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Provider implementations

pub mod anthropic;
pub mod gemini;
pub mod openai;
pub mod stakpak;
pub(crate) mod tls;

// Re-export providers
pub use anthropic::AnthropicProvider;
pub use gemini::GeminiProvider;
pub use openai::OpenAIProvider;
pub use stakpak::StakpakProvider;