just-deepseek 0.1.0

Rust client for the DeepSeek API
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 config;
mod error;
mod stream;
pub mod types;

pub use client::DeepSeekClient;
pub use config::DeepSeekConfig;
pub use error::Error;
pub use just_common as common;
pub use stream::ChatCompletionStream;