Earlier quoted context omitted.
If you have a Claude/Codex subscription then we use that (and account for the subsidized price accordingly when making routing decisions) instead of API billing. So you get the best of both worlds: subsidized usage for frontier models + save by using open/smaller models when it's genuinely better. In practice, lots of ppl are using this to make their Claude sub limits go further!
I see but didn’t they severely limited the usage allowed with `claude -p`
Show HN: Smart model routing directly in Claude, Codex and Cursor
31–40 of 127 posts
Re: Show HN: Smart model routing directly in Claude, Codex and Cursor
#32"We reward the routing model when it selects an LLM that achieves the task successfully" sounds pretty oversimplified
Happy to talk about this in some more depth if there's anything specific you're curious about!
Re: Show HN: Smart model routing directly in Claude, Codex and Cursor
#33What about request caching? If you swap to a cheaper model mid execution it might cost more that to make multiple requests to the already cached provider?
Re: Show HN: Smart model routing directly in Claude, Codex and Cursor
#341. https://github.com/instavm/murmur - Murmur
Re: Show HN: Smart model routing directly in Claude, Codex and Cursor
#35Re: Show HN: Smart model routing directly in Claude, Codex and Cursor
#36I'm just trying to figure out why on the fly routing would beat testing and tuning and locking models and versions for each class of call, with evals and auto tunes running to explore more possible models for commonly run classes of prompt over time . . .
Re: Show HN: Smart model routing directly in Claude, Codex and Cursor
#37We have created Murmur[1] which kind of works with your existing subscription (having API key is not mandatory). You can just tag @copilot @codex from claude code to delegate work to them. (it can also do it on its own too btw) 1. https://github.com/instavm/murmur - Murmur
Re: Show HN: Smart model routing directly in Claude, Codex and Cursor
#38This is basically what I need, a router. I’m tired of changing intelligence & speed levels manually.
Re: Show HN: Smart model routing directly in Claude, Codex and Cursor
#39I auto tune my prompts to a locked model version based on production data used as evals with holdback data. I think the use case for this would be one off interactive prompts? For now I just run those all against an Opus 4.8 MAX and I'm sure I could downtune, although for interactive my opening prompt isn't always reflective of my overall goals for the multi turn session. I'm just trying to figure out why on the fly…
Re: Show HN: Smart model routing directly in Claude, Codex and Cursor
#40Earlier quoted context omitted.
You're right and that's why we built the router to be cache aware! Once it starts using one model, the threshold to switch to another model will be higher because the additional cost of the cache miss needs to be worth the cost savings or quality increase. This is the key thing that other routers we've seen miss: they're stateless so for a coding agent use case you end up spending more money due to all the cache miss…
That is interesting, sounds like in practice you only end up routing between 2 models
In practice you just pick one and stick with it until the API stops or you hit performance issues.