rig/providers/deepseek.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
//! DeepSeek API client and Rig integration
//!
//! # Example
//! ```
//! use rig::providers::deepseek;
//!
//! let client = deepseek::Client::new("DEEPSEEK_API_KEY");
//!
//! let deepseek_chat = client.completion_model(deepseek::DEEPSEEK_CHAT);
//! ```
use crate::{
completion::{CompletionModel, CompletionRequest, CompletionResponse},
json_utils,
};
use reqwest::Client as HttpClient;
use serde::Deserialize;
use serde_json::json;
// ================================================================
// Main DeepSeek Client
// ================================================================
const DEEPSEEK_API_BASE_URL: &str = "https://api.deepseek.com";
#[derive(Clone)]
pub struct Client {
pub base_url: String,
pub api_key: String,
http_client: HttpClient,
}
impl Client {
// Create a new DeepSeek client from an API key.
pub fn new(api_key: &str) -> Self {
Self {
base_url: DEEPSEEK_API_BASE_URL.to_string(),
api_key: api_key.to_string(),
http_client: HttpClient::new(),
}
}
// If you prefer the environment variable approach:
pub fn from_env() -> Self {
let api_key = std::env::var("DEEPSEEK_API_KEY").expect("DEEPSEEK_API_KEY not set");
Self::new(&api_key)
}
// Handy for advanced usage, e.g. letting user override base_url or set timeouts:
pub fn from_url(api_key: &str, base_url: &str) -> Self {
// Possibly configure a custom HTTP client here if needed.
Self {
base_url: base_url.to_string(),
api_key: api_key.to_string(),
http_client: HttpClient::new(),
}
}
/// Creates a DeepSeek completion model with the given `model_name`.
pub fn completion_model(&self, model_name: &str) -> DeepSeekCompletionModel {
DeepSeekCompletionModel {
client: self.clone(),
model: model_name.to_string(),
}
}
/// Optionally add an agent() convenience:
pub fn agent(&self, model_name: &str) -> crate::agent::AgentBuilder<DeepSeekCompletionModel> {
crate::agent::AgentBuilder::new(self.completion_model(model_name))
}
}
/// The response shape from the DeepSeek API
#[derive(Debug, Deserialize)]
pub struct DeepSeekResponse {
// We'll match the JSON:
pub choices: Option<Vec<Choice>>,
// you may want usage or other fields
}
#[derive(Debug, Deserialize)]
pub struct Choice {
pub message: Option<DeepSeekMessage>,
}
#[derive(Debug, Deserialize)]
pub struct DeepSeekMessage {
pub role: Option<String>,
pub content: Option<String>,
}
/// The struct implementing the `CompletionModel` trait
#[derive(Clone)]
pub struct DeepSeekCompletionModel {
pub client: Client,
pub model: String,
}
impl CompletionModel for DeepSeekCompletionModel {
type Response = DeepSeekResponse;
#[cfg_attr(feature = "worker", worker::send)]
async fn completion(
&self,
request: CompletionRequest,
) -> Result<CompletionResponse<DeepSeekResponse>, crate::completion::CompletionError> {
// 1. Build the array of messages from request.chat_history + user prompt
// if request.preamble is set, it becomes "system" or the first message.
// So let's gather them in the style "system" + "user" + chat_history => JSON messages.
let mut messages_json = vec![];
// If preamble is present, push a system message
if let Some(preamble) = &request.preamble {
messages_json.push(json!({
"role": "system",
"content": preamble,
}));
}
// If chat_history is present, we can push them.
// Typically, a "user" role is "USER" and an "assistant" role is "system" or "assistant"
for msg in &request.chat_history {
let role = match msg.role.as_str() {
"system" => "system",
"assistant" => "assistant",
_ => "user",
};
messages_json.push(json!({
"role": role,
"content": msg.content,
}));
}
// Add user’s prompt as well
messages_json.push(json!({
"role": "user",
"content": request.prompt_with_context(),
}));
// 2. Prepare the body as DeepSeek expects
let body = json!({
"model": self.model,
"messages": messages_json,
"frequency_penalty": 0,
"max_tokens": request.max_tokens.unwrap_or(2048),
"presence_penalty": 0,
"temperature": request.temperature.unwrap_or(1.0),
"top_p": 1,
"tool_choice": "none",
"logprobs": false,
"stream": false,
});
// if user set additional_params, merge them:
let final_body = if let Some(params) = request.additional_params {
json_utils::merge(body, params)
} else {
body
};
// 3. Execute the HTTP call
let url = format!("{}/chat/completions", self.client.base_url);
let resp = self
.client
.http_client
.post(url)
.bearer_auth(&self.client.api_key)
.json(&final_body)
.send()
.await?;
if !resp.status().is_success() {
let status = resp.status();
let text = resp.text().await.unwrap_or_default();
return Err(crate::completion::CompletionError::ProviderError(format!(
"DeepSeek call failed: {status} - {text}"
)));
}
let json_resp: DeepSeekResponse = resp.json().await?;
// 4. Convert DeepSeekResponse -> rig’s `CompletionResponse<DeepSeekResponse>`
// If no choices or content, return an empty message
let content = if let Some(choices) = &json_resp.choices {
if let Some(choice) = choices.first() {
if let Some(msg) = &choice.message {
msg.content.clone().unwrap_or_default()
} else {
"".to_string()
}
} else {
"".to_string()
}
} else {
"".to_string()
};
// For now, we just treat it as a normal text message
let model_choice = crate::completion::ModelChoice::Message(content);
Ok(CompletionResponse {
choice: model_choice,
raw_response: json_resp,
})
}
}
// ================================================================
// DeepSeek Completion API
// ================================================================
/// `deepseek-chat` completion model
pub const DEEPSEEK_CHAT: &str = "deepseek-chat";