Skip to main content
You can deploy a dedicated endpoint in the dashboard with a guided wizard, or via the management API at https://gateway.omnia-voice.com/v1 using your workspace API key.

From the dashboard

1

Open Dedicated → Deploy

In the dashboard, go to Dedicated and start a new deployment.
2

Choose model & hardware

Select the base model, then the region, GPU type, and GPUs per replica. Only combinations that are actually available are shown.
3

Set autoscaling

Choose the minimum and maximum number of replicas, and name the endpoint.
4

Confirm funds and deploy

The wizard shows the hourly rate. You need enough prepaid balance to cover the minimum runway; if not, it tells you the exact shortfall to add. Deploy when ready.

Discover available hardware

Before creating an endpoint, list the GPU types, regions, and flavors you can deploy against with GET /v1/dedicated/templates. Deploy only against combinations returned here.
If a GPU count you need (above 8 per replica) or a region isn’t available in the templates, the dashboard shows “contact sales”; larger and custom deployments are arranged directly.

Create an endpoint

Create an endpoint with a POST to /v1/dedicated.
A successful create returns just the new endpoint’s id:
The endpoint provisions asynchronously. Fetch it with GET /v1/dedicated/{id} to read its routing key and current status once it’s ready:
Once running, route to the endpoint by passing model = dedicated/<routing-key> on the inference API; see Managing endpoints.

Fields

To serve a model you trained, set either customWeightsId (the model artifact id) or fineTuningJobId (a completed job) instead of relying on the base model alone. See Deploying a fine-tuned model.
Deploying starts billing for GPU time and requires prepaid balance covering the minimum runway (by default one hour). If the balance is short, the create call is refused with the exact shortfall amount. If the wallet is later exhausted while running, the endpoint is stopped automatically.

Need more than self-serve offers?

If you need more GPUs per replica than are listed, or a region that isn’t available, contact sales; larger and custom deployments are arranged directly.

Manage your endpoint

Call, scale, disable, and delete a running endpoint.