Standalone Hugging Face import and direct upload are not available yet. To bring a Hugging Face model into your library, deploy it with caching enabled (below); to serve one without caching, deploy it with
source="huggingface" (see Deployments).Save a training job as a model
When a training job completes, its checkpoint is already on Veri-managed storage. Save it to give it a name and make it reusable and deployable.If you retrain the same model repeatedly, register the job into a versioned lineage instead of saving flat entries:
veri models register <job-id> --model acme-bot makes it acme-bot@v6 with production/staging aliases, audited promotion, and rollback. See Model versions.Cache a Hugging Face model while deploying it
Deploying a Hugging Face repo can also save it to your library, so later deploys start from Veri storage instead of downloading from the Hugging Face hub:importing and flips to ready when the serving machine finishes uploading the weights in the background. Caching is best-effort: a failed upload marks the entry failed (retry by deploying with caching again) and never affects the deployment that requested it.
Once a cached copy is ready, every deploy of that repo with source="huggingface" uses it automatically — no flag needed. The created deployment shows the cached model in source_model_id, and the CLI prints “Using your cached copy”. Cached copies are private to your account.
Manage your library
Model states
Saving a completed training job produces a
ready model directly; a cached Hugging Face model passes through importing first.
Size limits
A custom model must fit on a single GPU node, the same ceiling as a deployment. Pick a GPU large enough to hold the weights when you deploy.Deploy a custom model
Once a model isready, deploy it by ID with source="custom_model". Custom models always serve from Veri storage, so cold starts skip any external download step.
Getting started without a model
If your library is empty, you have not saved a trained model yet. Train a model, then save the resulting checkpoint withveri models save. To deploy an open-source model without training, deploy a Hugging Face repo directly from Deployments.
Where to go next
Deploy a model
Spin up a deployment and chat with it in ~10 minutes.
Train your own model
Train a checkpoint, then save it to your library.
Hosting & GPU sizing
Pick the right GPU for your model size.
CLI deployment commands
Manage deployments from the terminal.

