diff --git a/docs/source/basic_tutorials/launcher.md b/docs/source/basic_tutorials/launcher.md index 747b924b..712b4fc4 100644 --- a/docs/source/basic_tutorials/launcher.md +++ b/docs/source/basic_tutorials/launcher.md @@ -355,13 +355,13 @@ Options: [env: NGROK_EDGE=] ``` -### TOKENIZER_CONFIG_PATH +## TOKENIZER_CONFIG_PATH ```shell --tokenizer-config-path - 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. + 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 [env: TOKENIZER_CONFIG_PATH=] - + ``` ## ENV ```shell diff --git a/launcher/src/main.rs b/launcher/src/main.rs index 7205dc9a..d2410a66 100644 --- a/launcher/src/main.rs +++ b/launcher/src/main.rs @@ -368,12 +368,12 @@ struct Args { #[clap(long, env)] ngrok_edge: Option, - /// path to the tokenizer config file - #[clap(long, env)] - tokenizer_config_path: Option, - /// 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, env)] + tokenizer_config_path: Option, + + /// Display a lot of information about your runtime environment #[clap(long, short, action)] env: bool, }