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/compose.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func newMetadataCommand(upCmd, downCmd *cobra.Command) *cobra.Command {
if err != nil {
return err
}
fmt.Printf(string(jsonMetadata))
fmt.Print(string(jsonMetadata))
return nil
},
}
Expand Down
2 changes: 1 addition & 1 deletion commands/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
func newRunCmd() *cobra.Command {
var debug bool

cmdArgs := "MODEL [PROMPT]"
const cmdArgs = "MODEL [PROMPT]"
c := &cobra.Command{
Use: "run " + cmdArgs,
Short: "Run a model and interact with it using a submitted prompt or chat mode",
Expand Down
2 changes: 1 addition & 1 deletion commands/unload.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func newUnloadCmd() *cobra.Command {
var all bool
var backend string

cmdArgs := "(MODEL [MODEL ...] [--backend BACKEND] | --all)"
const cmdArgs = "(MODEL [MODEL ...] [--backend BACKEND] | --all)"
c := &cobra.Command{
Use: "unload " + cmdArgs,
Short: "Unload running models",
Expand Down