stakai 0.3.80

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
//! Stakpak provider implementation
//!
//! Stakpak provides an OpenAI-compatible API at `/v1/chat/completions`.
//! This provider routes inference requests through Stakpak's infrastructure.

mod convert;
mod provider;
mod stream;
mod types;

pub use provider::StakpakProvider;
pub use types::StakpakProviderConfig;