Hugging Face import and direct upload are not available yet. For now, a custom model comes from a completed Veri training job. To serve a Hugging Face repo directly, 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.Manage your library
Model states
Saving a completed training job produces a
ready model directly.
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.

