stakai 0.3.70

A provider-agnostic Rust SDK for AI completions with streaming support - Built by Stakpak
Documentation
1
2
3
4
5
6
7
8
9
//! Anthropic provider module

pub(crate) mod convert;
mod provider;
pub(crate) mod stream;
pub(crate) mod types;

pub use provider::AnthropicProvider;
pub use types::{AnthropicConfig, AnthropicRequest, AnthropicResponse};