Model Guide
Union Alpha with Hermes Agent: What Is Confirmed, and How to Route It
Union Alpha arrived in September 2026 as an unattributed stealth model with a very large context window, and searches for it spiked before anyone knew whose model it was. This guide separates what is confirmed from what is not, and shows the exact routing config for Hermes Agent and OpenClaw.
union-alpha slug appeared in the public OpenRouter catalog on that date. Treat every availability statement below as dated, and verify against the live catalog before you configure anything.What a stealth launch actually is
A stealth model is published under a codename with the provider deliberately withheld. The point is to collect reactions that are not anchored to a brand, and to watch how the model behaves under real load before a named launch. It is a marketing and load-testing exercise, not a technical category, and it has one practical consequence for you: the slug is temporary by design.
Union Alpha followed that pattern closely. It appeared in mid-September 2026 with no parameter count, no architecture note, and no downloadable weights. The free preview window was announced as roughly a week and, according to the account behind the model, was cut short after about a day because demand exceeded what the preview could serve.
What is confirmed, and what is not
| Claim | Standing |
|---|---|
| Positioned for agentic coding, research, and long-context work | Stated at launch |
| 262,144-token context window | Stated at launch |
| Image input, tool calling, structured output, streaming | Stated at launch |
| Free during the preview, not trained on user data | Stated at launch |
| Provider is unbiased.ai; model branded Pareto | Reported after launch, not part of the original listing |
| Parameter count, architecture, weights | Never published |
| Benchmark parity with frontier models | Third-party claims; treat as unverified |
| General-availability pricing | Check the provider’s own page; preview pricing does not carry over |
The middle row is the one to hold loosely. Attribution of a stealth model comes from reporting and inference rather than from the listing itself, and it is worth confirming on the provider’s own site before you make a procurement decision on it.
Check availability before you configure
Do this first. A model guide that tells you to paste a slug without checking whether it resolves is how an agent ends up silently failing over on every turn.
curl -s https://openrouter.ai/api/v1/models \
| grep -i union-alphaNo output means the slug is not currently routable through that aggregator, and no amount of config will change that. If it returns a record, use the id field exactly as printed — that string, not the display name, is what both frameworks need.
Route it in Hermes Agent
The reliable path is the CLI, which writes the config for you and avoids the shape mistakes below:
hermes modelIf you are editing ~/.hermes/config.yaml directly, Hermes keeps the provider in its own key and does not fold it into the model string:
model:
default: <slug-as-listed>
provider: openrouterThrough an aggregator, the default carries that aggregator’s own slug while provider names the aggregator. Editing the model key on a running gateway takes effect on the next message; a change to API keys or tool config needs a gateway reload:
hermes gateway restartNote that is hermes gateway restart, not hermes restart.
Route it in OpenClaw
OpenClaw takes a single provider/model string, which is the shape difference people get wrong when copying between the two frameworks:
{
"agents": {
"defaults": {
"model": {
"primary": "openrouter/<slug-as-listed>"
}
}
},
"models": {
"providers": {
"openrouter": { "apiKey": "<your-key>" }
}
}
}Do not translate the Hermes form into OpenClaw by analogy or the reverse. Hermes uses the aggregator’s slug in model.default with provider alongside it; OpenClaw prefixes the aggregator onto the model string. Each is correct only in its own file.
Configure a fallback before you rely on it
This is the part that matters more than the routing. A stealth slug can be withdrawn between one turn and the next, and Union Alpha’s preview ending a day into a week-long window is exactly that scenario. For an agent that runs unattended — scheduled jobs, a messaging bot, anything you are not watching — configure a stable fallback model so a withdrawn preview degrades instead of failing.
A reasonable pattern: keep a known-good production model as the default, and switch to a preview slug only for sessions where you are present to see the results. See BYOK setup for keeping your own aggregator key, and fallback models for the stable options.
Is it worth testing?
A very large context window and tool calling are a genuinely useful combination for agent work, so it is worth a trial when it is available under a name you can buy. What it is not worth is rebuilding a working agent around a codename. Wait for the named release, price it, test retrieval on your own documents rather than on a published benchmark, and then decide.
OpenClaw Launch hosts the agent runtime; the model route and its terms remain between you and the provider you connect.
Union Alpha FAQ
What is Union Alpha?
Union Alpha was a stealth model that appeared publicly in mid-September 2026 without a named provider, parameter count, architecture note, or downloadable weights. It was presented as an agentic coding, research, and long-context model. Reporting shortly afterwards attributed it to unbiased.ai as a preview of a model branded Pareto.
Can I use Union Alpha in Hermes Agent right now?
Only if your model aggregator currently lists it. The free preview ended quickly, and as of 21 September 2026 no union-alpha model was listed in OpenRouter’s public catalog. Check the live catalog rather than trusting any article, including this one, for availability.
Why does a stealth model need a different setup?
It does not need a different mechanism, but it does need a different habit. A stealth slug can be withdrawn without notice, so configure a fallback model and avoid pinning an unattended agent to a preview slug as its only route.
Does this work on OpenClaw as well as Hermes Agent?
Yes. Both frameworks route models through an aggregator, but the config shape differs: OpenClaw takes a single provider/model string, while Hermes keeps the provider in its own key. Both forms are shown below.
Is a long context window the same as long-context accuracy?
No. A 262,144-token window states what the model will accept, not how reliably it retrieves from the middle of that window. Benchmark on your own documents before moving a production workload onto any long-context claim.