From 66292828e6c26fa0c52996a52691aad20cb2b10b Mon Sep 17 00:00:00 2001 From: drbh Date: Fri, 26 Jan 2024 10:57:53 -0500 Subject: [PATCH] fix: correct comment typo --- launcher/src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/launcher/src/main.rs b/launcher/src/main.rs index b47b24fa..95b73f75 100644 --- a/launcher/src/main.rs +++ b/launcher/src/main.rs @@ -372,7 +372,8 @@ struct Args { #[clap(long, env)] tokenizer_config_path: Option, - /// Display a lot of information about your runtime environment + /// The path to the tokenizer config file. This path is used to load the tokenizer configuration which may + /// include a `chat_template`. If not provided, the default config will be used from the model hub. #[clap(long, short, action)] env: bool, }