Long-context work
A 262K-token window suits large codebases, long documents, and multi-step agent transcripts.
Build with the Union Alpha API for research, coding, and agentic workflows. Currently free on TokenRa, with a 262K-token context window and text plus image input. Follow the quick guide below to get an API key and send your first request.
Union Alpha is a multimodal model available on TokenRa as union-alpha. It accepts text and image input, returns text, and provides a 262,144-token context window with up to 131,072 tokens of output. The provider is undisclosed and listed as Stealth.
A 262K-token window suits large codebases, long documents, and multi-step agent transcripts.
Supports OpenAI-compatible function calling and response_format. Validate output in your application.
Union Alpha accepts text and image input on the enabled integration.
The values below reflect the specifications published for this model. Confirm the live limits and availability for your account in the TokenRa console before relying on them.
union-alpha; provider listed as Stealth and operated independently of TokenRa.tools and tool_choice; structured output through response_format, with JSON schema accepted but not strictly enforced.Union Alpha favors depth and context length over response speed, which shapes where it works well.
Register for TokenRa, open the dashboard, create an API key, confirm that Union Alpha is enabled for your account, and then send an OpenAI-compatible request from your server. Keep the key private and verify the live model identifier before production use.
Register, then open the TokenRa dashboard.
Open the API key or token section, create a key, and store it server-side.
Confirm the enabled model ID, test a representative workload, and add production controls.
curl https://tokenra.io/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"union-alpha","messages":[{"role":"user","content":"YOUR_TEST_PROMPT"}]}'Any OpenAI-compatible client works the same way: point the API base at https://tokenra.io/v1 and set the model ID to union-alpha.
import openai
client = openai.OpenAI(
base_url="https://tokenra.io/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="union-alpha",
messages=[{"role": "user", "content": "YOUR_TEST_PROMPT"}],
)
print(response.choices[0].message.content)Union Alpha is currently listed at no per-token cost through TokenRa for both input and output. No credit card is required to get started. Free access is promotional and can change without notice; access is also subject to account eligibility, provider availability, and applicable rate limits. Verify the live TokenRa console before production use.
No input cost currently listed for Union Alpha.
No output cost currently listed for Union Alpha.
Check the TokenRa console for current RPM and quota limits.
Union Alpha is developed and operated by an undisclosed third-party provider listed as Stealth. No company name or research paper has been published. TokenRa provides API access to it as a routing gateway, and is not the model developer or owner.
Free access does not remove operational tradeoffs. Review these points before depending on Union Alpha in production.
response_format.Union Alpha is a multimodal large language model available on TokenRa as union-alpha, built for research, coding, and agentic workflows. It accepts text and image input and returns text, with a 262,144-token context window.
Union Alpha is currently listed at no per-token cost on TokenRa. Free access is promotional and can change; confirm current rates and account limits in the TokenRa console before production use.
The stated context window is 262,144 tokens with a maximum output of 131,072 tokens. Confirm the live limits for your account in the TokenRa console.
Yes. It supports OpenAI-compatible function calling through tools and tool_choice, and structured output through response_format. JSON schema is accepted but not strictly enforced, so validate output in your application.
It is developed and operated by an undisclosed third-party provider listed as Stealth. No company name or research paper has been published. TokenRa provides API access as a routing gateway and is not the model developer or owner.
Reported latency is around 17.6 seconds at P50 with throughput near 14 tokens per second. It suits batch processing, long-form generation, and asynchronous workloads rather than real-time chat or low-latency agents.
Union Alpha is developed and operated by an undisclosed third-party provider listed as Stealth. Specifications and performance figures on this page reflect published provider information and may change. Provider and related names belong to their respective rights holders. TokenRa provides API access as a routing gateway and is not the model developer or owner.