Skip to content

Models

A model is the name of the AI you call. You put that name in the "model" field of the request body. Qevron looks at the model name to route the request to the right provider.

Listing available models

To see the models your account can access:

bash
curl https://app.qevron.ai/v1/models \
  -H "Authorization: Bearer $QEVRON_API_KEY"

Response:

json
{
  "object": "list",
  "data": [
    { "id": "verinova", "object": "model", "owned_by": "arpanet" },
    { "id": "veriEmbedding", "object": "model", "owned_by": "arpanet" },
    { "id": "verirerag", "object": "model", "owned_by": "arpanet" }
  ]
}

Only models available to your key's group are listed.

Model types

Each model belongs to a capability type. You must send the right type of model to the right endpoint:

TypeWhat it doesExample endpoint
LLM (Chat)Generates text, answers, calls tools, understands images/v1/chat/completions
EmbeddingTurns text into a numeric vector (search, RAG)/v1/embeddings
RerankSorts a document list by relevance/v1/rerank
ImageGenerates / edits images/v1/images/*
TTSConverts text to speech/v1/audio/speech
STTConverts speech to text/v1/audio/transcriptions

Example models

Some models available in this deployment and their types:

ModelTypeDescription
verinovaLLMGeneral-purpose chat and text generation
spook-visionLLM (vision)Image understanding / captioning
spook-ocrLLM (vision)Text extraction from images (OCR)
spook-detectLLM (vision)Object detection in images
veriEmbeddingEmbeddingText embedding generation
verireragRerankDocument reranking
solab-sttSTTSpeech-to-text
blab-ttsTTSText-to-speech
spook-generateImageText-to-image generation
spook-backgroundImage (edit)Background removal

TIP

Always fetch the current list for your own deployment with /v1/models; models can be added or removed.

Querying a single model

bash
curl https://app.qevron.ai/v1/models/verinova \
  -H "Authorization: Bearer $QEVRON_API_KEY"

Details: Models API.

Qevron — AI gateway. Arpanet / OpenAI / Anthropic / Gemini compatible.