TL;DR: Use NanoGPT (or something else) as a pay-as-you-go backup for OpenCode Go outages, with fallbacks from different model families than your primary.
Disclaimer: I AI-slopped this article but added edits manually.
OpenCode Go charges $10/month for $60 of usage.
I like it a lot.
BUT the service is being more and more used, it goes down sometime, forcing a massive timeout on you. Can't blame them, it's hard to find GPUs these days.
But I want to keep working.
NanoGPT runs on different providers. I load it with $15 minimum balance and only spend during OCG outages. Cost per outage day runs about $1.30 for my typical usage.
This is my LLM Proxy config', the details are not important, but I decided that for NanoGPT my models would look like this.
This is a simplified configuration but you get the gist.
{
"deep": { "id": "MiniMax-M3", "options": { "thinking": "enabled" } },
"deep-fallback": { "id": "mimo-v2.5", "options": { "thinking": "enabled" } },
"high": { "id": "MiniMax-M3", "options": { "thinking": "enabled" } },
"high-fallback": { "id": "mimo-v2.5", "options": { "thinking": "enabled" } },
"max": { "id": "glm-5.2", "options": { "thinking": "enabled" } },
"max-fallback": { "id": "kimi-k2.6", "options": { "thinking": "enabled" } }
}
For comparison this is my setup with Opencode GO
{
"high": { "id": "minimax-m3", "options": { "extra_body": { "thinking": { "type": "enabled" }, "reasoning_effort": "high" } } },
"high-fallback": { "id": "qwen3.7-plus", "options": { "extra_body": { "thinking": { "type": "enabled" }, "reasoning_effort": "high" } } },
"deep": { "id": "minimax-m3", "options": { "extra_body": { "thinking": { "type": "enabled" }, "reasoning_effort": "medium" } } },
"deep-fallback": { "id": "qwen3.7-plus", "options": { "extra_body": { "thinking": { "type": "enabled" }, "reasoning_effort": "medium" } } },
"max": { "id": "glm-5.2", "options": { "extra_body": { "thinking": { "type": "enabled" }, "reasoning_effort": "high" } } },
"max-fallback": { "id": "qwen3.7-max", "options": { "extra_body": { "thinking": { "type": "enabled" }, "reasoning_effort": "high" } } }
}
MiMo V2.5 Thinking (Xiaomi family) sits at 56.8 LMArena and costs $0.14/$0.28 per million tokens. That matches the capability of Qwen3.7 Plus which I use on OCG, but cheaper and from a different family.
Kimi K2.6 Thinking (Moonshot family) hits 61.8 LMArena at $0.50/$2.60. That's close to Qwen3.7 Max which I use as my OCG max fallback, with similar pricing tier and a different provider.
If MiniMax or Z.AI has a regional outage, the Xiaomi and Moonshot models still work.
It's not worth it to subscribe to NanoGPT's subscription for this use case.
It costs $12 per month, but with this setup here is what I expect to pay on pay-as-you-go.
| Outage days/year | Backup cost |
|---|---|
| 5 | ~$7 |
| 10 | ~$14 |
| 30 | ~$41 |
A few alternatives worth keeping in mind for later:
Cohere North Mini Code (36.5 LMArena) and Ring 2.6 1T (42.8) both scored too low to make the cut.