hide the --runner flag in ollama run

This commit is contained in:
Patrick Devine
2026-04-23 17:39:46 -07:00
parent 0d863c8cf4
commit 2dcc80204d

View File

@@ -2407,6 +2407,7 @@ func NewCLI() *cobra.Command {
runCmd.Flags().Bool("nowordwrap", false, "Don't wrap words to the next line automatically")
runCmd.Flags().String("format", "", "Response format (e.g. json)")
runCmd.Flags().String("runner", "", "Runner to use for manifest list selection (mlx, ggml, llamacpp)")
runCmd.Flags().MarkHidden("runner")
runCmd.Flags().String("think", "", "Enable thinking mode: true/false or high/medium/low for supported models")
runCmd.Flags().Lookup("think").NoOptDefVal = "true"
runCmd.Flags().Bool("hidethinking", false, "Hide thinking output (if provided)")