spook-generate
What is this model?
A model hosted by Qevron on our own GPU infrastructure.
Capability & type
| Capability | Image Generation — Capability page |
| Model type | Image generation (type=5) |
| Base model | FLUX.1-dev (Q8 GGUF) |
| Provider | arpanet (local / self-hosted) |
| Streaming | — |
Endpoint
POST /v1/images/generationsBase 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-generate |
prompt | string | ✓ | Image prompt |
size | string | — | 1024x1024 |
response_format | string | — | b64_json |
Response schema
json
{ "created": 0, "data": [{"b64_json": "<base64 PNG>"}] }Code examples
curl
bash
curl https://app.qevron.ai/v1/images/generations \
-H "Authorization: Bearer $QEVRON_KEY" -H "Content-Type: application/json" \
-d '{"model": "spook-generate", "prompt": "a cat astronaut, oil painting", "size": "1024x1024", "response_format": "b64_json"}'Python
python
from openai import OpenAI
client = OpenAI(api_key="$QEVRON_KEY", base_url="https://app.qevron.ai/v1")
r = client.images.generate(model="spook-generate", prompt="a cat astronaut, oil painting", size="1024x1024", response_format="b64_json")
print(r.data[0].b64_json[:32], "...")Pricing
Current price: GET /v1/models/spook-generate.
Rate limits
RPM/TPM are governed by your group quota. Check your current quota with: GET /v1/dashboard/billing/quota.
Related
- Capability page: Image Generation
- All local models: Local Models