The high-throughput reasoning model zorveus/qwen3.8-27b is live across all Zorveus Edge gateways, official SDKs, and connected application endpoints.
Featuring a 128,000-token context window and support for runtime thinking controls, zorveus/qwen3.8-27b combines deep reasoning with fast time-to-first-token performance. Whether powering customer-facing chat assistants, structured data extraction, or code analysis loops, the model delivers strong benchmark performance and is currently free to use across all Zorveus accounts during its introductory preview.
One of the key capabilities of zorveus/qwen3.8-27b is runtime control over its reasoning behavior. By default, the model can emit internal thought tokens to work through multi-step logic before producing its final answer.
For low-latency interactions or concise API responses where reasoning tokens are unnecessary, you can disable thinking mode using chat_template_kwargs.
You can start making calls to zorveus/qwen3.8-27b immediately using the official Zorveus SDKs, standard OpenAI client libraries, or direct HTTP requests. Select your integration method from the tabs below:
For conversational user interfaces, terminal tools, and low time-to-first-token agent loops, zorveus/qwen3.8-27b provides Server-Sent Event (SSE) streaming with fast token emission:
Method:
import { Zorveus } from "@zorveus/sdk";const client = new Zorveus({ apiKey: process.env.ZORVEUS_API_KEY,});const stream = await client.chat.completions.create({ model: "zorveus/qwen3.8-27b", messages: [ { role: "user", content: "Write a thread-safe cache in TypeScript with TTL eviction.", }, ], stream: true, extra_body: { chat_template_kwargs: { enable_thinking: false }, },});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="zorveus/qwen3.8-27b", messages=[ {"role": "user", "content": "Write a thread-safe cache in Python with TTL eviction."} ], stream=True, extra_body={"chat_template_kwargs": {"enable_thinking": False}},)for chunk in stream: print(chunk.choices[0].delta.content or "", end="", flush=True)
zorveus/qwen3.8-27b is currently free to use with zero wallet balance or deposit required. You can generate an API key and start streaming completions immediately.
When building production and multi-tenant applications on Zorveus:
Per-user attribution: Every inference call can be attributed to specific internal features or end users via user metadata, providing clean usage analytics.
Hard spend caps: Pre-configure period-based hard caps to safeguard your budget when transitioning to standard billing.
Bring-Your-Own-Key (BYOK): Connect your own provider credentials with automatic fallback to your Zorveus organization wallet when upstream limits are hit.
zorveus/qwen3.8-27b is available immediately for all personal, developer, and business workspaces on Zorveus.