Arcana ARCANA

DeepSeek

DeepSeek offers some of the cheapest and most capable models for coding. Strong performance at a fraction of the cost of frontier providers.

Setup

# 1. Get your API key from https://platform.deepseek.com/
export DEEPSEEK_API_KEY=sk-...

# 2. Verify detection
arcana doctor

# 3. Run
arcana run "hello"

Available Models

ModelContextBest For
deepseek-chat128KGeneral purpose, coding, very cheap
deepseek-reasoner128KDeep reasoning, math, complex analysis

Config File

{
  "provider": "deepseek",
  "model": "deepseek-chat"
}

Environment Variables

VariableDescription
DEEPSEEK_API_KEYYour DeepSeek API key (required)

Pricing Notes

DeepSeek is extremely affordable. Approximate costs per 1M tokens:

ModelInputOutput
deepseek-chat$0.14$0.28
deepseek-reasoner$0.55$2.19

Tips

  • deepseek-chat is excellent for everyday coding at extremely low cost
  • Use deepseek-reasoner for complex reasoning tasks — much cheaper than o1 or Claude Opus
  • DeepSeek models are OpenAI-compatible — they work with OpenAI client libraries
  • Great choice as a utility model for extraction and compaction tasks
Last updated: Jul 24, 2026