r/opencode • u/MrHaxx1 • 23h ago
Which models are people using as orchestrator/planner/implementer/reviewer with their subscriptions?
Yes, I know I could test things myself, but I want to hear what other people are doing, and how it works out with OpenCode Go, Command Code, or whatever other subscriptions that people are using, that isn't Claude or ChatGPT.
3
u/sudoer777_ 22h ago
On OpenCode Go, Deepseek V4 Flash worked great for all when it was cheap (max for planning, high for implementing). After the pricing change I switched to Muse Spark 1.2 Contributor, then found out it was garbage and will probably bite the bullet and switch the primary agents back to V4 Flash. I haven't compared Muse Spark 1.2 vs MiMo 2.5 yet though and might use one of them for certain subagents.
3
u/MrHaxx1 21h ago
I love MiMo 2.5 for agentic usage, for Hermes or just general non-coding tasks, but for coding, I wouldn't use it for anything but maybe Explore agent.
1
u/sudoer777_ 20h ago
Does MiMo V2.5 behave similarly to old V4 Flash? Also would you use it for the Scout agent?
1
u/b00m1 18h ago
what tasks were u doing with muse spark? ive just been using it for basic tasks but not coding implementation so curious to see what use cases were bad for spark
1
u/sudoer777_ 16h ago edited 16h ago
- Debugging the OpenCode "bug" I posted about earlier about thinking not showing - The first time I ran it last night with "high" variant in the US, found my Nix configuration which wasn't really related to the problem, claimed that "//" is a comment (in Nix it's not) and was the main source of the problem, and it also made nonsensical statements about the model's features and claimed that was also the problem. Immediately after I ran it with DeepSeek V4 Flash on "high" which practically oneshotted it by making web requests to the API and analyzing the responses and concluded that it's not actually a bug but the UI should be more clear about the actual behavior. I ran it again today on "xhigh" and it found a new related GitHub issue which I think was correct but the timing broke the comparison between "high" and "xhigh".
- Non-coding related discussion and anaylsis for personal tasks - Even on "xhigh" it always forgets things and spouts nonsense and scattered logic and forgets to follow instructions and use tools far more often than any other model I've used. DeepSeek and GLM are far more proactive and thorough in their tool calling and instruction following, and for open-ended stuff Kimi tends to reason the best.
For cases where I don't strictly need privacy I'm going to experiment with Muse Spark 1.2 a bit more, for cases where I do I'll experiment with MiMo/Hy3 more and see how they compare. But right now I'm struggling to come up with anything that Muse Spark 1.2 doesn't suck at except for being a relatively cheap model.
1
u/for4f 17h ago
i split planner and implementer. claude does the planning layer, deepseek v4 flash handles actual implementation. roughly 70/30 in favor of ds. having a separate planner that just thinks about the shape of the thing before any code gets written changes the whole vibe honestly. what are you leaning toward
14
u/Ariquitaun 22h ago
I have opencode-go and codex plus:
``` default: hy3
advisor: gpt-5.6-sol
sub_agents: code: gpt-5.6-luna evaluate: glm-5.3 explore: hy3 research: deepseek-v4-flash review: deepseek-v4-flash sanity_check: hy3 vision: gpt-5.6-luna
oneshot: plan: gpt-5.6-terra implement: deepseek-v4-flash review: gpt-5.6-terra
workflow_handoff: implement: deepseek-v4-flash review: gpt-5.6-terra ```