mirror of
https://github.com/ollama/ollama.git
synced 2025-08-03 00:02:47 +02:00
add verbose/quiet commands
This commit is contained in:
@@ -241,6 +241,8 @@ func generateInteractive(cmd *cobra.Command, model string) error {
|
||||
readline.PcItem("/set",
|
||||
readline.PcItem("history"),
|
||||
readline.PcItem("nohistory"),
|
||||
readline.PcItem("verbose"),
|
||||
readline.PcItem("quiet"),
|
||||
readline.PcItem("mode",
|
||||
readline.PcItem("vim"),
|
||||
readline.PcItem("emacs"),
|
||||
@@ -299,6 +301,12 @@ func generateInteractive(cmd *cobra.Command, model string) error {
|
||||
case "nohistory":
|
||||
scanner.HistoryDisable()
|
||||
continue
|
||||
case "verbose":
|
||||
cmd.Flags().Set("verbose", "true")
|
||||
continue
|
||||
case "quiet":
|
||||
cmd.Flags().Set("verbose", "false")
|
||||
continue
|
||||
case "mode":
|
||||
if len(args) > 2 {
|
||||
switch args[2] {
|
||||
|
Reference in New Issue
Block a user