Digitorn
Digitorn
← All integrations
DeepSeek

Build AI agents on DeepSeek in YAML

DeepSeek V3 and R1, currently the best price-to-quality ratio for agent work.

Why DeepSeek

DeepSeek changed the cost calculus for agent setups in late 2025. V3 handles general coordination tasks credibly at a fraction of frontier pricing, and R1 ships strong reasoning. For exploration agents, fact-checkers, classifiers, anything that produces text the user does not directly read, DeepSeek is often the right default.

Models worth knowing about

fast
deepseek-chat
General coordinator, very cheap
specialty
deepseek-reasoner
Multi-step reasoning, R1-class
Strengths
  • Best price-to-quality ratio in 2026
  • OpenAI-compatible endpoint, drop-in for most setups
  • Reasoning model is genuinely competitive
  • No noticeable rate limiting at moderate volume
Worth knowing
  • Tool-call format is OpenAI-flavoured, occasional small format mismatches with Anthropic-trained coordinators
  • Documentation is leaner than the frontier providers
  • Geographic compliance considerations for some teams

Drop into your app.yaml

agent brain block
1brain:2  provider: deepseek3  model: deepseek-chat4  backend: openai_compat5  credential:6    ref: deepseek_main7    scope: per_user8    provider: deepseek9  config:10    api_key: "{{env.DEEPSEEK_API_KEY}}"   # dev fallback11    base_url: "https://api.deepseek.com/v1"12  temperature: 0.2
✓ Credential vault supported

Register your DeepSeek key once in the encrypted credential vault, then reference it from any agent by name. The runtime resolves the secret at session start, never bakes it into the app bundle, and rotates without redeploys.

# one-time setup: register the credential
digitorn credentials create \
  --provider deepseek \
  --label deepseek_main \
  --scope per_user \
  -f api_key=...
Reference it from your YAML with the credential: block (shown above). The legacy {{env.X}} template still works as a development fallback.
Run one in 5 minutes

Install Digitorn and chat with your DeepSeek agent

# 1. install the runtime
curl -sSL https://digitorn.ai/install | sh

# 2. register your DeepSeek credential in the vault
digitorn credentials create --provider deepseek --label deepseek_main -f api_key=...

# 3. install a starter agent and chat
digitorn install hub://digitorn/digitorn-code
digitorn chat digitorn-code
Read the deep dive

How we cut our coding agent's bill by 60% with model routing

Read article
Newsletter

Get the next post in your inbox.

Engineering notes from the Digitorn team. No marketing, no launch announcements, no "10 prompts that will change your life". Just the things we write that we'd want to read.

One-click unsubscribe. We never share your address. Powered by our own infrastructure, not a tracker.

Other providers Digitorn supports

frontierAnthropic Claude/integrations/anthropicfrontierOpenAI/integrations/openaifrontierMistral/integrations/mistralopenOllama/integrations/ollamaopenvLLM/integrations/vllmfastGroq/integrations/groqenterpriseAzure OpenAI/integrations/azure-openaifrontierGoogle Gemini/integrations/google-geminiopenTogether AI/integrations/together-ai