Skip to content

Commit

Permalink
fix: model flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mkloubert committed Jan 12, 2025
1 parent 11f1f34 commit 8114e95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log (go-package-manager)

## 0.34.2
## 0.34.3

- feat: `base64` command that outputs binary input data base Base64 string
- feat: `cat` command that outputs binary input data combined to STDOUT
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func main() {
// use "gpm-root flag" everywhere
rootCmd.PersistentFlags().StringVarP(&app.GpmRootPath, "gpm-root", "", "", "custom root directory for this app")
// use custom AI model
rootCmd.Flags().StringVarP(&app.Model, "model", "", "", "custom AI model")
rootCmd.PersistentFlags().StringVarP(&app.Model, "model", "", "", "custom AI model")
// use "no-system-prompt flag" everywhere
rootCmd.PersistentFlags().BoolVarP(&app.NoSystemPrompt, "no-system-prompt", "", false, "do not use system prompt")
// use "ollama flag" everywhere
Expand Down

0 comments on commit 8114e95

Please sign in to comment.