From f7a8454d43594e95150fee3c7d198ec1c2eb4430 Mon Sep 17 00:00:00 2001 From: drbh Date: Fri, 26 Jan 2024 10:55:35 -0500 Subject: [PATCH] fix: update docs and move arg position in file --- docs/source/basic_tutorials/launcher.md | 8 ++++++++ launcher/src/main.rs | 8 ++++---- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/docs/source/basic_tutorials/launcher.md b/docs/source/basic_tutorials/launcher.md index bafe3669..747b924b 100644 --- a/docs/source/basic_tutorials/launcher.md +++ b/docs/source/basic_tutorials/launcher.md @@ -354,6 +354,14 @@ Options: [env: NGROK_EDGE=] +``` +### 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. + + [env: TOKENIZER_CONFIG_PATH=] + ``` ## ENV ```shell diff --git a/launcher/src/main.rs b/launcher/src/main.rs index 796adea8..b47b24fa 100644 --- a/launcher/src/main.rs +++ b/launcher/src/main.rs @@ -368,13 +368,13 @@ struct Args { #[clap(long, env)] ngrok_edge: Option, - /// Display a lot of information about your runtime environment - #[clap(long, short, action)] - env: bool, - /// path to the tokenizer config file #[clap(long, env)] tokenizer_config_path: Option, + + /// Display a lot of information about your runtime environment + #[clap(long, short, action)] + env: bool, } #[derive(Debug)]