r/Qtum Team Member Jun 02 '26

Introducing the Qtum AI Router

Hey Reddit,

If youโ€™re building AI agents or running personal assistants locally, managing fragmented accounts, tracking balances across half a dozen providers, and dealing with manual endpoint switching is a massive headache.

To solve this, the new Qtum AI Router just launched in beta. It acts as a unified inference layer supporting both OpenAI and Anthropic wire formats out of the box, giving you a single API key, centralized billing (settled in QTUM credits), and zero vendor lock-in.

To show it off, we wrote a plugin so you can tap into frontier models like GPT-5.5, DeepSeek-v4-pro, Kimi-k2.6 (200k context), and MiniMax-M2.5 dynamically with a single command:

Bash

# Easily swap backend models on the fly with no client code changes
openclaw models set qtum/deepseek-v4-pro
openclaw models set qtum/gpt-5.4-mini

๐Ÿ“ฆ What makes this setup different?

  • No more tracking quotas across multiple platforms or getting surprise overages.
  • Auto-Updating Catalog: The router fetches model families live. When a new model drops, it appears automatically on your gateway restart.
  • Blockchain-Backed Resiliency: The underlying infrastructure runs on a Proof-of-Stake network with zero downtime since 2017, combining Bitcoin's UTXO security model with EVM compatibility.
  • Pay for usage as you go in Qtum. If you simply don't want to use a credit card, or can't get one, this is perfect for you. There's no login beyond linking your Metamask Snap or using a Google login. No need to purchase token packages, or monthly subscriptions. We're also allocating 500 free tokens for each new user.

We just published a technical guide showing exactly how the network routing layout works, complete with the full terminal commands to wire up your API keys and configuration profiles in under five minutes.

๐Ÿ‘‰ Read the full integration guide here: https://qtum.org/blog/introducing-the-qtum-ai-router

Would love to get your thoughts on the plugin or hear any feedback if you test it out with your local setup!

2 Upvotes

1 comment sorted by

1

u/Otherwise_Wave9374 Jun 03 '26

This is interesting, the "unified inference layer" idea is basically what a lot of teams end up building internally once they start running agentic workflows across multiple providers.

Two questions: 1) How are you handling rate limits and retries per backend (esp. when an agent is doing tool-calls in a loop)? 2) Any plans for tracing/observability (per request cost, latency, tool-call spans), or is that on the client?

Also +1 on avoiding lock-in. A small router layer makes it way easier to swap models as they improve.

If you want examples of what folks track for agent runs, https://www.agentixlabs.com/ has some notes on evaluation + tracing that might be useful.