ds-api 0.10.7

A Rust client library for the DeepSeek API with support for chat completions, streaming, and tools
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod non_streaming;
pub mod streaming;

pub use non_streaming::{
    ChatCompletionResponse, Choice, CompletionTokensDetails, FinishReason, Logprobs, ObjectType,
    TokenLogprob, TopLogprob, Usage,
};
pub use streaming::{
    ChatCompletionChunk, ChunkChoice, ChunkObjectType, Delta, DeltaFunctionCall, DeltaToolCall,
};