DeepSeek provides powerful AI models with an OpenAI-compatible API.Documentation Index
Fetch the complete documentation index at: https://docs.openclaw.ai/llms.txt
Use this file to discover all available pages before exploring further.
| Property | Value |
|---|---|
| Provider | deepseek |
| Auth | DEEPSEEK_API_KEY |
| API | OpenAI-compatible |
| Base URL | https://api.deepseek.com |
Getting started
Get your API key
Create an API key at platform.deepseek.com.
Run onboarding
deepseek/deepseek-v4-flash as the default model.Non-interactive setup
Non-interactive setup
For scripted or headless installations, pass all flags directly:
Built-in catalog
| Model ref | Name | Input | Context | Max output | Notes |
|---|---|---|---|---|---|
deepseek/deepseek-v4-flash | DeepSeek V4 Flash | text | 1,000,000 | 384,000 | Default model; V4 thinking-capable surface |
deepseek/deepseek-v4-pro | DeepSeek V4 Pro | text | 1,000,000 | 384,000 | V4 thinking-capable surface |
deepseek/deepseek-chat | DeepSeek Chat | text | 131,072 | 8,192 | DeepSeek V3.2 non-thinking surface |
deepseek/deepseek-reasoner | DeepSeek Reasoner | text | 131,072 | 65,536 | Reasoning-enabled V3.2 surface |
Thinking and tools
DeepSeek V4 thinking sessions have a stricter replay contract than most OpenAI-compatible providers: after a thinking-enabled turn uses tools, DeepSeek expects replayed assistant messages from that turn to includereasoning_content on follow-up requests. OpenClaw handles this inside the
DeepSeek plugin, so normal multi-turn tool use works with
deepseek/deepseek-v4-flash and deepseek/deepseek-v4-pro.
If you switch an existing session from another OpenAI-compatible provider to a
DeepSeek V4 model, older assistant tool-call turns may not have native
DeepSeek reasoning_content. OpenClaw fills that missing field on replayed
assistant messages for DeepSeek V4 thinking requests so the provider can accept
the history without requiring /new.
When thinking is disabled in OpenClaw (including the UI None selection),
OpenClaw sends DeepSeek thinking: { type: "disabled" } and strips replayed
reasoning_content from the outgoing history. This keeps disabled-thinking
sessions on the non-thinking DeepSeek path.
Use deepseek/deepseek-v4-flash for the default fast path. Use
deepseek/deepseek-v4-pro when you want the stronger V4 model and can accept
higher cost or latency.
Live testing
The direct live model suite includes DeepSeek V4 in the modern model set. To run only the DeepSeek V4 direct-model checks:Config example
Related
Model selection
Choosing providers, model refs, and failover behavior.
Configuration reference
Full config reference for agents, models, and providers.