Create `DeepSeek` configuration
(api_key: impl Into<String>, model: impl Into<String>)
| 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 { |
no outgoing calls