spook-vision
What is this model?
A model hosted by Qevron on our own GPU infrastructure.
Capability & type
| Capability | Vision Question-Answering — Capability page |
| Model type | Language model (LLM) (type=1) |
| Base model | image captioning / VQA |
| Provider | arpanet (local / self-hosted) |
| Streaming | ✓ supported |
Endpoint
POST /v1/chat/completions (with image_url content)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 | ✓ | spook-vision |
messages | array | ✓ | content blocks incl. image_url |
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": "spook-vision",
"messages": [{"role": "user", "content": [{"type":"text","text":"Describe this image"},{"type":"image_url","image_url":{"url":"data:image/jpeg;base64,<...>"}}]}]
}'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="spook-vision",
messages=[{"role": "user", "content": [{"type":"text","text":"Describe this image"},{"type":"image_url","image_url":{"url":"data:image/jpeg;base64,<...>"}}]}],
)
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: "spook-vision",
messages: [{ role: "user", content: [{type:"text",text:"Describe this image"},{type:"image_url",image_url:{url:"data:image/jpeg;base64,<...>"}}] }],
});
console.log(resp.choices[0].message.content);Pricing
Current price: GET /v1/models/spook-vision.
Rate limits
RPM/TPM are governed by your group quota. Check your current quota with: GET /v1/dashboard/billing/quota.
Related
- Capability page: Vision Question-Answering
- All local models: Local Models