Solid. Can you show us when to use this vs. say OpenRouter? The performance seems strong for sure. TIA.
Show HN: Arch-Router – 1.5B model for LLM routing by preferences, not benchmarks
11–18 of 18 posts
Re: Show HN: Arch-Router – 1.5B model for LLM routing by preferences, not benchmarks
#12Re: Show HN: Arch-Router – 1.5B model for LLM routing by preferences, not benchmarks
#13How do you compare with RouteLLM?
Arch-Router takes a different approach. Instead of focusing benchmark scores, we lets developers define routing policies in plain language based on their preferences — like “contract analysis → GPT-4o” or “lightweight brainstorming → Gemini Flash.” Our 1.5B model learns to map prompts (along with conversational context) to these policies, enabling routing decisions that align with real-world expectations, not abstract leaderboards. Also our approach doesn't require router model retraining when new LLMs are swapped in or when preferences change.
Hope this helps.
Re: Show HN: Arch-Router – 1.5B model for LLM routing by preferences, not benchmarks
#14Re: Show HN: Arch-Router – 1.5B model for LLM routing by preferences, not benchmarks
#15How do you compare with RouteLLM?
Re: Show HN: Arch-Router – 1.5B model for LLM routing by preferences, not benchmarks
#16Not that LLMs are terribly latency sensitive (you wait on a lot of tokens), but what kind of latency impact does this have on requests that go through the proxy?
Re: Show HN: Arch-Router – 1.5B model for LLM routing by preferences, not benchmarks
#17Not that LLMs are terribly latency sensitive (you wait on a lot of tokens), but what kind of latency impact does this have on requests that go through the proxy?
We use envoy as request handler which forwards request to local service written in rust. Envoy is proven to be high performance, low latency and highly efficient on request handling. If I have to put a number it would be in single digit ms per request. I will have more detailed benchmark in the coming days.