>>109165279
Also, in case you didn't know, you can run Claude Code using DS. The Flash (used to be Chat) model has an Anthropic endpoint. Same coding harness, at 1/100th the cost.
Set up the following on Win machines, and run it in PowerShell before launching Claude Code. Assume it's something similar on Linux:
$env:ANTHROPIC_BASE_URL = "https://api.deepseek.com/anthropic"
$env:ANTHROPIC_AUTH_TOKEN = "YOUR-API-TOKEN"
$env:API_TIMEOUT_MS = "600000"
$env:ANTHROPIC_MODEL = "deepseek-chat"
$env:ANTHROPIC_SMALL_FAST_MODEL = "deepseek-chat"
$env:CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC = "1"
DS API can also be used to back OpenClaw and other agentic harnesses.