#!/bin/sh
export ANTHROPIC_BASE_URL=https://api.deepseek.com/anthropic
export ANTHROPIC_AUTH_TOKEN=sk-secret
export ANTHROPIC_MODEL=deepseek-v4-flash
export CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1
exec claude $@DeepClaude – Claude Code agent loop with DeepSeek V4 Pro
21–30 of 322 posts
Re: DeepClaude – Claude Code agent loop with DeepSeek V4 Pro
#22I'm not exactly sure what the point of this is. Deepseek already has instructions to use its API with many CLI's including Claude Code directly: https://api-docs.deepseek.com/quick_start/agent_integrations...
Re: DeepClaude – Claude Code agent loop with DeepSeek V4 Pro
#23Earlier quoted context omitted.
A lot of people are having good experiences doing things like using opus for designing and using locally hosted qwen3.6 for implementation. I could see a serious cost reduction story by using opus for design and deepseek for implementation. Personally I would avoid anthropic entirely. But I get why people don't.
Like me: that’s what I do. Either Opus 4.7 or GLM 5.1 for planning, write it out to a markdown file, then farm it out to Qwen 3.6 27B on my DGX Spark-alike using Pi. Works amusingly well all things considered.
Re: DeepClaude – Claude Code agent loop with DeepSeek V4 Pro
#24Re: DeepClaude – Claude Code agent loop with DeepSeek V4 Pro
#25I'm not exactly sure what the point of this is. Deepseek already has instructions to use its API with many CLI's including Claude Code directly: https://api-docs.deepseek.com/quick_start/agent_integrations...
I thought the tool format wasnt exactly the same ? So plugging any IA into claude code requires a conversion of format
Re: DeepClaude – Claude Code agent loop with DeepSeek V4 Pro
#26Why wouldn't you use something open source like OpenCode, which already support DSv4 and has more features than CC?
Re: DeepClaude – Claude Code agent loop with DeepSeek V4 Pro
#27If you're okay with sonnet level performance, this sounds like a straight upgrade. But I find that sonnet messes up too much, that it ends up not being worth cost optimizing down to using it or another sonnet-level model. Glad to have this as an option though
Re: DeepClaude – Claude Code agent loop with DeepSeek V4 Pro
#28obviously vibe coded ( co authored ) + the prices dont even match
It's going to be real hard to find headlines that weren't vibe coded from here on out unfortunately.
Maybe I need to switch to some news publication that actually does real research and writing still. Because public forums like this have been completely destroyed by LLMs.
Re: DeepClaude – Claude Code agent loop with DeepSeek V4 Pro
#29#!/bin/sh export ANTHROPIC_BASE_URL=https://api.deepseek.com/anthropic export ANTHROPIC_AUTH_TOKEN=sk-secret export ANTHROPIC_MODEL=deepseek-v4-flash export CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1 exec claude $@