docs: Update and fix CLI help descriptions

Signed-off-by: teleprint-me <77757836+teleprint-me@users.noreply.github.com>
This commit is contained in:
teleprint-me 2024-05-15 12:58:24 -04:00
parent b4b6f1fa00
commit 2185e5cf14
No known key found for this signature in database
GPG key ID: B0D11345E65C4D48

View file

@ -111,7 +111,7 @@ def main():
"-r", "-r",
"--render-template", "--render-template",
action="store_true", action="store_true",
help="Render the chat template using Jinja2", help="Render the chat template using Jinja2. Default is False.",
) )
parser.add_argument( parser.add_argument(
"-b", "-b",
@ -129,13 +129,13 @@ def main():
"-g", "-g",
"--agp", "--agp",
action="store_true", action="store_true",
help="Add generation prompt. Default is True.", help="Add generation prompt. Default is False.",
) )
parser.add_argument( parser.add_argument(
"-v", "-v",
"--verbose", "--verbose",
action="store_true", action="store_true",
help="Output model keys", help="Output model keys. Default is False.",
) )
args = parser.parse_args() args = parser.parse_args()