fix: default to deepseek/deepseek-v4-flash-0731 (drop invalid openrouter/ prefix) - #74
Merged
Merged
Conversation
…ter/ prefix) The aforge harness passes the model id to OpenRouter verbatim; OpenRouter rejects 'openrouter/...' as an invalid model ID (400), so every reasoner failed with turns=0. Use the bare slug the user intends. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The manifest defaults for the harness model (materialized into a node's
environment by the control plane when the user has stored no value) were
openrouter/moonshotai/kimi-k2.5. With the default harness now aforge, themodel id is passed to OpenRouter verbatim, and OpenRouter rejects the
openrouter/routing prefix:Every LLM-backed reasoner then fails with
turns=0/ "output file was NOTcreated" / schema-parse failures, so an
af install-ed node does no real work(a scan/audit "succeeds" with zero findings and $0 cost).
Reproduced directly against the bundled aforge binary + this repo's key:
openrouter/moonshotai/kimi-k2.5(old default)400 … not a valid model ID, turns=0deepseek/deepseek-v4-flash-0731(new default)Fix
Set the default model to the bare, valid OpenRouter slug
deepseek/deepseek-v4-flash-0731across the manifest (root +go/),.env.example, compose files, Dockerfile ENV defaults, and docs.Left unchanged on purpose: opencode-config JSON blocks (opencode consumes/strips
the
openrouter/prefix itself) and test fixtures that set the env explicitly.🤖 Generated with Claude Code