Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions docs/providers/deepseek/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The simplest way to use DeepSeek:
```yaml
agents:
root:
model: deepseek/deepseek-chat
model: deepseek/deepseek-v4-pro
description: Assistant using DeepSeek
instruction: You are a helpful assistant.
```
Expand All @@ -46,7 +46,7 @@ For more control over parameters:
models:
deepseek_model:
provider: deepseek
model: deepseek-chat
model: deepseek-v4-pro
temperature: 0.7
max_tokens: 8192

Expand All @@ -65,8 +65,9 @@ for current model IDs, context limits, and pricing.

| Model | Description |
| --- | --- |
| `deepseek-chat` | DeepSeek-V3, general-purpose chat and tool calling |
| `deepseek-reasoner` | DeepSeek-R1, extended-reasoning model |
| `deepseek-v4-pro` | DeepSeek V4 Pro, extended-reasoning model with tool calling |
| `deepseek-v4-flash` | DeepSeek V4 Flash, fast general-purpose model with tool calling |
| `deepseek-v4-flash-vision-exp` | DeepSeek V4 Flash Vision (experimental), multimodal model with image input |

> Model IDs are case-sensitive and must be passed exactly as the catalogue lists
> them.
Expand All @@ -84,8 +85,8 @@ DeepSeek is implemented as a built-in alias in Docker Agent:
```yaml
agents:
coder:
model: deepseek/deepseek-chat
description: Code assistant using DeepSeek-V3
model: deepseek/deepseek-v4-pro
description: Code assistant using DeepSeek V4 Pro
instruction: |
You are an expert programmer.
Write clean, well-documented code and follow language best practices.
Expand Down
Loading