just-deepseek 0.2.0

DeepSeek API client and wire-level types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! DeepSeek provider SDK.
//!
//! This crate exposes a thin Rust client over the DeepSeek HTTP API. Public request and
//! response types under [`types`] are wire-level DTOs that closely mirror the upstream
//! protocol shape so callers can reason about provider-specific fields directly.
#![warn(missing_docs)]

mod client;
mod client_builder;
mod error;
mod stream;
pub mod transport;
pub mod types;

pub use client::DeepSeekClient;
pub use client_builder::DeepSeekClientBuilder;
pub use error::Error;
pub use stream::ChatCompletionStream;