verinova-large
What is this model?
A high-capacity, self-hosted chat (LLM) model based on Qwen3-30B-A3B-Instruct (Q8), running on our own GPU infrastructure. Stronger than verinova-stable for harder tasks and longer context. Supports both chat (/v1/chat/completions) and classic completion (/v1/completions).
Capability & type
| Capability | Chat (LLM) — Capability page |
| Model type | Language model (LLM) (type=1) |
| Base model | Qwen3-30B-A3B-Instruct-2507 (Q8) |
| Provider | arpanet (local / self-hosted) |
| Streaming | ✓ supported |
Endpoint
POST /v1/chat/completionsSecondary endpoints:
POST /v1/completions
Base URL: https://app.qevron.ai/v1
Authentication
Every request needs the Authorization: Bearer <KEY> header.
Authorization: Bearer <KEY>Request schema & parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
model | string | ✓ | verinova-large |
messages | array | ✓ | OpenAI role/content message list |
stream | bool | — | true → SSE stream |
max_tokens | int | — | Max tokens to generate |
temperature | number | — | 0–2 |
Response schema
json
{
"id": "chatcmpl-...",
"object": "chat.completion",
"choices": [{"index": 0, "message": {"role": "assistant", "content": "..."}, "finish_reason": "stop"}],
"usage": {"prompt_tokens": 0, "completion_tokens": 0, "total_tokens": 0}
}Streaming
Add "stream": true; the server replies incrementally over Server-Sent Events.
Code examples
curl
bash
curl https://app.qevron.ai/v1/chat/completions \
-H "Authorization: Bearer $QEVRON_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "verinova-large",
"messages": [{"role": "user", "content": "Hello, world"}]
}'Python
python
from openai import OpenAI
client = OpenAI(api_key="$QEVRON_KEY", base_url="https://app.qevron.ai/v1")
resp = client.chat.completions.create(
model="verinova-large",
messages=[{"role": "user", "content": "Hello, world"}],
)
print(resp.choices[0].message.content)JavaScript
javascript
import OpenAI from "openai";
const client = new OpenAI({ apiKey: process.env.QEVRON_KEY, baseURL: "https://app.qevron.ai/v1" });
const resp = await client.chat.completions.create({
model: "verinova-large",
messages: [{ role: "user", content: "Hello, world" }],
});
console.log(resp.choices[0].message.content);Pricing
| Input | Output | Unit |
|---|---|---|
| $0.0005 | $0.001 | 1K tokens |
Rate limits
RPM/TPM are governed by your group quota. Check your current quota with: GET /v1/dashboard/billing/quota.
Notes & quirks
- This is Qevron's default recommended chat model (
GET /v1/capabilities→LLM_CHAT). - Requests for the retired alias
verinovaare routed to this model.
Limits & constraints
- Context window: 32K tokens (server default).
Related
- Capability page: Chat (LLM)
- All local models: Local Models