From 2185e5cf14cdc7e588587d4aa190a152868d4823 Mon Sep 17 00:00:00 2001 From: teleprint-me <77757836+teleprint-me@users.noreply.github.com> Date: Wed, 15 May 2024 12:58:24 -0400 Subject: [PATCH] docs: Update and fix CLI help descriptions Signed-off-by: teleprint-me <77757836+teleprint-me@users.noreply.github.com> --- gguf-py/scripts/gguf-template.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gguf-py/scripts/gguf-template.py b/gguf-py/scripts/gguf-template.py index 27b6e9f3c..43f3bca9e 100644 --- a/gguf-py/scripts/gguf-template.py +++ b/gguf-py/scripts/gguf-template.py @@ -111,7 +111,7 @@ def main(): "-r", "--render-template", action="store_true", - help="Render the chat template using Jinja2", + help="Render the chat template using Jinja2. Default is False.", ) parser.add_argument( "-b", @@ -129,13 +129,13 @@ def main(): "-g", "--agp", action="store_true", - help="Add generation prompt. Default is True.", + help="Add generation prompt. Default is False.", ) parser.add_argument( "-v", "--verbose", action="store_true", - help="Output model keys", + help="Output model keys. Default is False.", ) args = parser.parse_args()