MCPcopy Create free account
hub / github.com/InfinitiBit/graphbit / deepseek

Method deepseek

core/src/llm/providers.rs:310–316  ·  view source on GitHub ↗

Create `DeepSeek` configuration

(api_key: impl Into<String>, model: impl Into<String>)

Source from the content-addressed store, hash-verified

308
309 /// Create `DeepSeek` configuration
310 pub fn deepseek(api_key: impl Into<String>, model: impl Into<String>) -> Self {
311 Self::DeepSeek {
312 api_key: api_key.into(),
313 model: model.into(),
314 base_url: None,
315 }
316 }
317
318 /// Create `HuggingFace` configuration
319 pub fn huggingface(api_key: impl Into<String>, model: impl Into<String>) -> Self {

Calls

no outgoing calls