From 6d34bfcef54ff6315110310b1a0477b239b0943c Mon Sep 17 00:00:00 2001 From: drbh Date: Fri, 26 Jan 2024 11:11:35 -0500 Subject: [PATCH] fix: replace accidental deletion and fix docs again --- docs/source/basic_tutorials/launcher.md | 6 +++--- launcher/src/main.rs | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) 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, }