changelog4 min read

stealth/ox-alpha is Live on Zorveus

Zorveus
Zorveus Engineering
stealth/ox-alpha is Live on Zorveus

stealth/ox-alpha is Live on Zorveus

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.

Specifications & Economics

MetricSpecification
Model IDstealth/ox-alpha
Context Window1,000,000 tokens (1M context)
ArchitectureSparse MoE (320B total parameters / 18B active)
ModalitiesText, Code, Multimodal
Primary StrengthsLong-context repo analysis, complex tool calling, agentic coding
BillingAutomatic deduction from Organization Wallet or Product-User grants

Using stealth/ox-alpha in Zorveus

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);

Real-Time Streaming

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 || "");
}

Large Context Window & Caching

With a 1-million-token context window, stealth/ox-alpha can process entire codebases, multi-chapter books, or full system logs in a single prompt.

When routing high-volume queries through Zorveus:

  1. Automatic Prefix Caching: Prompt prefixes repeated across multiple requests receive automated gateway cache discounts.
  2. 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.
  3. 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.

Discuss Online