If
create fails with “No <gpu> capacity available”, that GPU is momentarily sold out in the region. Retry shortly, or pass a different --gpu-type (run veri gpu list to see offered shapes). Bigger shapes like A100-80GB are scarcer because they come as full 8-GPU nodes, so prefer L4-24GB for small models.Prerequisites
- Install the SDK:
pip install veri-sdk - Authenticate:
veri login(or setVERI_API_KEY)
Step 1: bring up the deployment
Create the deployment from a Hugging Face repo. Each tab is the same call. It returns immediately with a deployment ID andstatus: queued; the GPU then provisions in the background.
serving, the deployment stays up. It is now billing GPU credit until you stop it in step 3.
Step 2: experiment
Send as many requests as you like while it is up. Reuse the ID from step 1. Because the endpoint is OpenAI-shaped, the OpenAI SDK and plaincurl work against it too.
veri deployments metrics <id>.
Step 3: stop it when you are done
Nothing stops on its own. When you have finished experimenting, shut it down so billing stops:What you just did
source="huggingface"tells Veri to pull the weights from the Hub at serve time. Nothing was uploaded from your machine, and there is no second download at request time.- The endpoint speaks the OpenAI Chat Completions API, so any OpenAI client works by pointing
base_urlat it. See Calling a deployment. - Billing ran only while the deployment was
serving. Once stopped, the row stays for history but no longer charges.
Next steps
Deployments overview
The lifecycle, GPU sizing, and the full chat surface.
Serve a model you trained
Deploy a checkpoint from a completed training job.
OpenAI compatibility
Drop-in usage from the OpenAI SDK, LangChain, and LlamaIndex.
CLI deployment commands
veri deployments create / chat / stop.
