createregisters a model record (metadata only), thenuploadorremote-uploads createadds the weight files.
Create
Register a new model record. This creates metadata only; it does not upload any files. Upload the weights afterward withupload or remote-uploads create.
Shell
tg beta models -c.
Parameters
Upload
Upload weight files from your local machine to an existing model or adapter record.Shell
Parameters
List
List the models in the current project.Shell
tg beta models ls.
Parameters
Retrieve
Get a single model by ID.Shell
tg beta models get.
Update
Update a model record. Only the fields you pass are changed.Shell
Parameters
Delete
Delete a model record. This removes the metadata; it does not delete uploaded files.Shell
tg beta models -d.
Configs
List the deployable configs for a model. Pass a config ID totg beta endpoints deploy --config to deploy that specific configuration.
Shell
Parameters
List files
List the files in a model or adapter.Shell
Parameters
List revisions
List the revisions of a model.Shell
Parameters
Download
Download the weight files of a model or adapter to a local directory.Shell
Parameters
List public models
List the publicly visible models across all projects. Use this to find a base model ID forcreate or a model name for tg beta endpoints deploy.
Shell
--json to see each model’s full record, including its id (which subsequent operations require) and its deploymentProfiles array. A model can expose more than one profile, each pairing a certified config with a hardware and parallelism choice, so read the id, config, gpuType, and gpuCount of the profile you want before deploying. See Choose a hardware config.
Parameters
List org models
List the internal-visibility models in your organization.Shell
Parameters
Remote uploads
Import model weights server-side from a Hugging Face repo or a presigned S3/GCS URL, without downloading them locally first. Create a remote upload job against an existing model record, then poll it until it succeeds.Remote uploads create
Start a remote upload job.Shell
--token. For S3 or GCS, pass a presigned archive URL as --from (no token needed).
Parameters
Remote uploads retrieve
Get a remote upload job by ID. Poll this untilstatus is REMOTE_UPLOAD_STATUS_SUCCEEDED.
Shell
Parameters
Remote uploads list
List remote upload jobs.Shell
Parameters
Global options
Every command also accepts the global parameters, including--json for machine-readable output and --project to override the target project.