anomalyco / anomalyco/opencode
deepseek-v4-pro on opencode-go /responses fails on any multi-turn request (flash & official API both work)
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 209k
- Forks
- 27.5k
- PR merge metrics
- PR metrics pending
Description
Env: Windows 11, Codex with wire_api = responses via cc-switch → https://opencode.ai/zen/go/v1, model deepseek-v4-pro. I retried right after the 0813 model update and the problem is still there.
What happens: First turn in a fresh conversation is fine. From the second turn on, as soon as the request includes the previous assistant reply, it returns 400.
Errors I've seen (two variants):
Error from provider (Console Go): Upstream request failed: [invalid_request_error] Invalid assistant message: content or tool_calls must be set
and earlier:
Failed to deserialize the JSON body into the target type: messages[4]: missing field `id` at line 1 column ...
Same request with deepseek-v4-flash returns 200, and going straight to the official DeepSeek API (api.deepseek.com/v1/responses) also returns 200. So it looks like Console Go's conversion from Responses to its internal messages format doesn't handle pro's assistant message history properly.
Minimal repro (same body, pro → 400 / flash → 200):
curl -s https://opencode.ai/zen/go/v1/responses \
-H "Authorization: Bearer $KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v4-pro",
"input": [
{"type":"message","role":"user","content":[{"type":"input_text","text":"hi"}]},
{"type":"message","role":"assistant","content":[{"type":"output_text","text":"hello"}]},
{"type":"message","role":"user","content":[{"type":"input_text","text":"how are you?"}]}
]
}'
Swap model to deepseek-v4-flash with the exact same body and it returns 200.
This seems related to #42090, #42091 and #36354 — Console Go validates pro's message/tool format stricter than flash and rejects the standard Codex format. Would be great if this could be fixed, or if pro's /responses could be routed to the native upstream the way flash was.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start at the /responses handling and its conversion into the internal messages format, using the minimal curl request as the reproduction. Compare deepseek-v4-pro with deepseek-v4-flash and review related issues #42090, #42091, and #36354. Done means the multi-turn pro request returns successfully without the missing id or empty assistant-content errors.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript
- Domain
- api, backend-api-design
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Quiet
- Clarity
- Mostly clear
- Newbie friendliness
- 55/100