Supported Models
| Model | ID | Context | Tools | Notes |
|---|---|---|---|---|
| DeepSeek Chat | deepseek-chat | 64K | Yes | General purpose |
| DeepSeek Coder | deepseek-coder | 128K | Yes | Code-optimized |
| DeepSeek R1 | deepseek-reasoner | 64K | No | Chain-of-thought reasoning |
Setup
Environment Variables
Your DeepSeek API key.
Configuration Example
- .env
- settings.yml
Model Aliases
| Alias | Model |
|---|---|
deepseek | deepseek-chat |
deepseek-coder | deepseek-coder |
deepseek-r1 | deepseek-reasoner |
deepseek-local | deepseek-r1:7b (via Ollama) |
Usage Examples
Notes
- API endpoint:
https://api.deepseek.com/v1(OpenAI-compatible) - Status: Beta
- DeepSeek R1 uses extended chain-of-thought reasoning similar to OpenAI o1.
deepseek-reasoner(R1) does not support tool calling.- For local/offline use, run
ollama pull deepseek-r1:7band use thedeepseek-localalias.
Related
- AI Providers Overview - Compare all 37 supported providers
- Ollama - Run DeepSeek models locally via Ollama
- OpenAI - o1 and o3 reasoning models for comparison
- profclaw provider - Add and test providers from the CLI