1. Create the deployment
Creating and updating deployments is done in the dashboard in this release — there is no public create API yet.1
Open the wizard
Go to Settings → Serverless GPUs and select New deployment.
2
Pick a template and configure it
Choose LLM Server (vLLM) and fill in its fields. The only required one is the Hugging Face model id, in
owner/model form — for example Qwen/Qwen2.5-7B-Instruct.Optional fields cover max context length, quantization (awq, gptq, bitsandbytes) and GPU memory utilization. A Hugging Face token field appears for gated models.3
Choose a GPU
The picker lists the serverless SKUs with VRAM, price and live availability. Pick one with enough VRAM for the weights you are loading; a SKU showing
none has no capacity right now.4
Set scaling
Minimum workers is always
0 in this release — the deployment scales to zero when idle.5
Review the estimate and create
The review step shows the estimated max burn — the hourly cost with every worker running. Creating the deployment also reserves a credit hold against your balance; if your available balance does not cover it, creation is refused with a
402 and nothing is created. Top up and retry. See Billing.Give it an alias (lowercase, hyphenated, no slashes) and create. Status moves deploying → active.First boot takes minutes, not seconds. A cold start downloads the container image before the workload can start; for a large LLM image that is on the order of ten minutes. Image download time is not billed — worker time is. Subsequent cold starts on the same deployment are much faster because the image is already staged.
2. Submit a job
Your deployment answers on the same queue host as every catalog model, at{username}/{alias}. The body is your workload’s own input fields at the top level — nothing is validated against a model schema:
3. Poll for the result
status is terminal — COMPLETED, FAILED or CANCELLED. Or skip polling entirely: deployments support webhooks and the SSE stream exactly like catalog models.
4. Read the output
output field is your workload’s own JSON, verbatim — whatever your handler returned, with no schema validation and no media re-hosting. The LLM server template returns an array of completion objects; that shape, and the input fields above, are the template’s own contract rather than a platform one, so check the template’s current fields if they do not match.
5. Watch the money
Idle workers wind down after the idle timeout and the deployment returns to zero — at which point it costs nothing per second, though the credit hold stays reserved while the deployment exists. Pause it to release the hold, or delete it when you are done:- Settings → Serverless GPUs → your deployment → Usage shows metered worker-seconds and settled charges per hour.
GET /billing/usage-summaryreports the account-wideserverlessSpentfigure.

