Skip to main content
All management operations use the API at https://gateway.omnia-voice.com/v1 with your workspace API key, or the dashboard. Creating, updating, and deleting endpoints are admin-gated.

Calling a dedicated endpoint

A running endpoint has a routing key. Call it through the normal inference API by passing dedicated/<routing-key> as the model, the same /v1/chat/completions (and other) endpoints you already use:
Requests to a dedicated endpoint are served by your reserved GPUs and are not billed per token; you’re paying for the GPU time.

Listing and inspecting

Updating and scaling

Update an endpoint with a PATCH to /v1/dedicated/{id}. Change the replica range to adjust autoscaling, change the hardware, or toggle enabled to disable/enable the endpoint. The endpoint autoscales between minReplicas and maxReplicas based on demand; higher replica counts increase throughput and cost proportionally.

Updatable fields

Only these fields can be changed via PATCH:
The base model (modelName), region, and the fine-tuned-weights bindings (customWeightsId / fineTuningJobId) are set at create time and are not updatable. To change them, create a new endpoint.

Disabling to halt billing

Set enabled: false (or disable from the dashboard) to halt GPU billing while keeping the endpoint’s configuration. Re-enable it when you need the capacity again. Because you’re only billed while it runs, disabling is the right move whenever you don’t need the endpoint.
You don’t have to disable manually to avoid runaway spend: if the workspace wallet is exhausted, a running endpoint is automatically stopped.

Deleting

Delete an endpoint to remove it entirely. This stops billing and frees the routing key.

Monitoring

Each endpoint has an observability page in the dashboard. In addition to the usual traffic, latency, TTFT, throughput, and error metrics, a dedicated endpoint adds capacity/replica metrics so you can see autoscaling behavior. See Observability.
Create, update, and delete require an owner/admin workspace key. Regular members can call a running endpoint but not manage it. See Workspaces & teams.