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
//! OpenAI provider implementation

pub mod convert;
mod error;
mod provider;
pub mod stream;
pub mod types;

pub use error::OpenAIError;
pub use provider::OpenAIProvider;
pub use types::OpenAIConfig;