The high-performance reasoning model stealth/ox-alpha is live across the Zorveus Edge gateway, official TypeScript and Python SDKs, and connected application endpoints.
Featuring a 1-million-token context window and a sparse Mixture-of-Experts (MoE) architecture, stealth/ox-alpha provides frontier-level coding execution, deep step-by-step reasoning, and high throughput for multi-turn agentic workflows.
You can start making calls to stealth/ox-alpha immediately using the official Zorveus SDKs, direct cURL requests, or any OpenAI-compatible client. Select your preferred integration method from the dropdown below:
Method:
import { Zorveus } from "@zorveus/sdk";const client = new Zorveus({ apiKey: process.env.ZORVEUS_API_KEY,});const response = await client.chat.completions.create({ model: "stealth/ox-alpha", messages: [ { role: "user", content: "Analyze this distributed lock implementation for edge-case race conditions.", }, ], max_tokens: 4096,});console.log(response.choices[0].message.content);
For interactive chat applications, terminal tools, and low time-to-first-token (TTFT) agent loops, stealth/ox-alpha supports Server-Sent Event (SSE) token streaming. Select your SDK or integration method from the dropdown below:
Method:
import { Zorveus } from "@zorveus/sdk";const client = new Zorveus({ apiKey: process.env.ZORVEUS_API_KEY,});const stream = await client.chat.completions.create({ model: "stealth/ox-alpha", messages: [ { role: "user", content: "Write a high-concurrency event bus in Go.", }, ], stream: true,});for await (const chunk of stream) { process.stdout.write(chunk.choices[0]?.delta?.content || "");}
import osfrom zorveus import Zorveusclient = Zorveus(api_key=os.environ["ZORVEUS_API_KEY"])stream = client.chat.completions.create( model="stealth/ox-alpha", messages=[ {"role": "user", "content": "Refactor this async handler to use guard clauses."} ], stream=True,)for chunk in stream: print(chunk.choices[0].delta.content or "", end="", flush=True)
BYOK Routing & Failover: Organizations configured with custom keys can route stealth/ox-alpha traffic through their own accounts with automated fallback to the Zorveus Organization Wallet.
Credit Enforcement: Control user budgets using strict or fallback credit rules configured on your inference keys.
stealth/ox-alpha is enabled across all Zorveus accounts today.