diff --git a/commands/package.go b/commands/package.go index d59bf0de..16bdec57 100644 --- a/commands/package.go +++ b/commands/package.go @@ -73,7 +73,7 @@ func newPackagedCmd() *cobra.Command { c.Flags().StringVar(&opts.ggufPath, "gguf", "", "absolute path to gguf file (required)") c.Flags().StringArrayVarP(&opts.licensePaths, "license", "l", nil, "absolute path to a license file") - c.Flags().BoolVar(&opts.push, "push", false, "push to registry (if not set, the model is loaded into the Model Runner content store.") + c.Flags().BoolVar(&opts.push, "push", false, "push to registry (if not set, the model is loaded into the Model Runner content store)") c.Flags().Uint64Var(&opts.contextSize, "context-size", 0, "context size in tokens") return c } diff --git a/docs/reference/docker_model_package.yaml b/docs/reference/docker_model_package.yaml index e00078e1..b423f826 100644 --- a/docs/reference/docker_model_package.yaml +++ b/docs/reference/docker_model_package.yaml @@ -41,7 +41,7 @@ options: value_type: bool default_value: "false" description: | - push to registry (if not set, the model is loaded into the Model Runner content store. + push to registry (if not set, the model is loaded into the Model Runner content store) deprecated: false hidden: false experimental: false diff --git a/docs/reference/model_package.md b/docs/reference/model_package.md index e08c7762..25404b02 100644 --- a/docs/reference/model_package.md +++ b/docs/reference/model_package.md @@ -10,7 +10,7 @@ Package a GGUF file into a Docker model OCI artifact, with optional licenses. Th | `--context-size` | `uint64` | `0` | context size in tokens | | `--gguf` | `string` | | absolute path to gguf file (required) | | `-l`, `--license` | `stringArray` | | absolute path to a license file | -| `--push` | `bool` | | push to registry (if not set, the model is loaded into the Model Runner content store. | +| `--push` | `bool` | | push to registry (if not set, the model is loaded into the Model Runner content store) |