ds-api 0.10.7

A Rust client library for the DeepSeek API with support for chat completions, streaming, and tools
Documentation
pub mod chat_completion;
pub mod message;
pub mod model;
pub mod response_format;
pub mod stop;
pub mod stream_options;
pub mod thinking;
pub mod tool;
pub mod tool_choice;

pub use chat_completion::ChatCompletionRequest;
pub use message::{FunctionCall, Message, Role, ToolCall, ToolType};
pub use model::Model;
pub use response_format::{ResponseFormat, ResponseFormatType};
pub use stop::Stop;
pub use stream_options::StreamOptions;
pub use thinking::{Thinking, ThinkingType};
pub use tool::{Function, Tool};
pub use tool_choice::{FunctionName, ToolChoice, ToolChoiceObject, ToolChoiceType};