osmosis model command group: list, inspect, deploy, and undeploy all act on a LoRA model by name.
Base Models
Base models are imported from Hugging Face and used as the starting point for training on Osmosis.Supported Base Models
We currently support:| Model | Description |
|---|---|
Qwen/Qwen3.6-35B-A3B | Qwen 3.6 35B with 3B active parameters (MoE) |
Qwen/Qwen3.5-122B-A10B | Qwen 3.5 122B with 10B active parameters (MoE) |
The list of supported models is expanding. Check the platform dashboard or run
osmosis model list --type base for the latest available base models.List Base Models
LoRA Models
LoRA models are trained checkpoints produced by training runs. The Models page lists them separately from base models and shows training run, checkpoint step, training reward, creation date, and deployment status when inference deployment is available for your account.Inspect LoRA Models
List LoRA models:2 of 5 inference deployments used).
Deploy a LoRA Model
After a training run finishes, list its LoRA models to find one to deploy:Call the Inference Endpoint
Deployed LoRA models are served through the OpenAI-compatible chat completions endpoint:model value from the model detail page or osmosis model info. The model value has the form <base_model_path>:<lora-model-name>.
If inference deployment is not available for your account, deployment status, deployment quota, and endpoint snippets may be hidden.
Undeploy
To transition a LoRA model’s deployment to inactive:undeploy only transitions the serving deployment to inactive. undeploy is idempotent — calling it on an already-inactive model is a no-op.
Requirements
- Run model commands from the workspace directory so the CLI can resolve the connected workspace from Git
origin. - The LoRA model must belong to a training run in the same workspace.
- Inference deployment must be available for your account. Deploying models also requires an active subscription.
- GitHub setup must be healthy before training runs can produce new LoRA models.
Next Steps
Datasets
Upload and validate datasets for evaluation runs and training runs.
Training Runs
Submit training runs and inspect their LoRA models.
Command Reference
Review model and deployment commands and options.