vlinder model¶
Manage models from catalogs.
Subcommands¶
vlinder model add¶
Add a model from a catalog.
| Argument / Option | Default | Description |
|---|---|---|
NAME | required | Name of the model to add |
--catalog | — | Catalog to pull from (e.g., ollama) |
--endpoint | — | Custom endpoint URL for the model provider |
Resolves the model from the specified catalog, registers it with the registry, and creates a model manifest file at ~/.vlinder/models/<name>-model.toml.
vlinder model available¶
List models available in a catalog.
| Argument / Option | Default | Description |
|---|---|---|
FILTER | — | Optional substring to filter model names |
--catalog | — | Catalog to query |
--endpoint | — | Custom endpoint URL |
Queries the catalog API and displays available models.
vlinder model list¶
List models registered locally.
Displays all models registered with the registry, showing name, type (inference or embedding), engine, and content digest.
vlinder model remove¶
Remove a registered model.
| Argument | Description |
|---|---|
NAME | Name of the model to remove |
Removes the model manifest and deregisters the model from the registry.
See Also¶
- model.toml reference for the manifest schema
- Manage Models how-to guide