Fix CLI verbose tool progress config fallback

This commit is contained in:
honor2030
2026-05-23 21:03:51 -07:00
committed by Teknium
parent d97c324473
commit 6a1aa420e7
5 changed files with 84 additions and 10 deletions
+5 -1
View File
@@ -269,7 +269,11 @@ def build_top_level_parser():
help="Inference provider (default: auto). Built-in or a user-defined name from `providers:` in config.yaml.",
)
chat_parser.add_argument(
"-v", "--verbose", action="store_true", help="Verbose output"
"-v",
"--verbose",
action="store_true",
default=argparse.SUPPRESS,
help="Verbose output",
)
chat_parser.add_argument(
"-Q",