Conversation
Replace reasoning_options = [] with effort [none, low, medium, high] on opencode-go/mimo-v2.6-flash, opencode-go/mimo-v2.6-pro and opencode/mimo-v2.6-flash-free so clients show an effort picker. Evidence: live probe 2026-09-22 on POST /zen/go/v1/chat/completions — none|low|medium|high pass (none -> 0 reasoning tokens), while xhigh|max|minimal|adaptive|default -> 400. Free-tier values mirror the zen/go probe on the same base_model plus kilo's xiaomi/mimo-v2.6 entry. bun validate passes.
Contributor
Action items
|
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.
Summary
Replaces
reasoning_options = [](which clients render as "no caller control" and hide the effort picker) with a verified effort list on the three MiMo-V2.6 entries:providers/opencode-go/models/mimo-v2.6-flash.toml→effort [none, low, medium, high]providers/opencode-go/models/mimo-v2.6-pro.toml→effort [none, low, medium, high]providers/opencode/models/mimo-v2.6-flash-free.toml→effort [none, low, medium, high]Host classification
Both
opencode(Zen gateway) andopencode-goare multi-lab relays → options come from this-host live test + lab docs + same-lab peers; no contradiction.Wire
reasoning_effort(OpenAI-compatible body), serialized by the opencode client fromreasoning_optionseffort values.Evidence (live probe 2026-09-22, POST https://opencode.ai/zen/go/v1/chat/completions)
reasoning_effort = none | low | medium | high→ 200;noneyieldscompletion_tokens_details.reasoning_tokens = 0.xhigh,max,minimal,adaptive,default,"off"→ 400 Invalid request parameters (upstream) — so those levels are not authored.thinking.type = disabled→ 200 / 0 reasoning tokens as well; per the effort-with-nonerule no separatetoggleis added.x-opencode-endpoint-id: mimo,x-opencode-upstream-model-id: mimo-v2.6-flash.Free tier disclosure:
opencode/mimo-v2.6-flash-freecannot be probed from outside OpenCode (403 FreeTierError); its values come from the live zen/go test on the samebase_model(xiaomi/mimo-v2.6-flash) plus the kilo relay's effort option forxiaomi/mimo-v2.6-*. Happy to adjust if a maintainer can verify from within OpenCode.Peers / baseline
thinking.type enabled|disabled)xiaomi/mimo-v2.6-*→ toggle; kiloxiaomi/mimo-v2.6-*→ effort[none, high]Validation
bun validatepasses (exit 0); generated JSON showsreasoning_options: [{"type":"effort","values":["none","low","medium","high"]}]for all three entries.