omni-vox
OpenAI-compatible inference gateway.
- Base URL
/llm/v1- Model
gemma-4-12b- Auth
Authorization: Bearer <api-key>
Endpoints
GET /llm/v1/modelsPOST /llm/v1/chat/completions— supportsstream: truePOST /llm/v1/completionsGET /llm/docs— interactive API reference
Quick start
curl -H "Authorization: Bearer $LLM_API_KEY" \
-H 'Content-Type: application/json' \
"$HOST/llm/v1/chat/completions" \
-d '{"model":"gemma-4-12b",
"messages":[{"role":"user","content":"Say hello."}]}'
Python
from openai import OpenAI
client = OpenAI(base_url="$HOST/llm/v1", api_key="...")
client.chat.completions.create(
model="gemma-4-12b",
messages=[{"role": "user", "content": "Say hello."}],
)