Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion commands/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/docker_model_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/model_package.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) |


<!---MARKER_GEN_END-->
Expand Down
Loading