fix: replace accidental deletion and fix docs again

This commit is contained in:
drbh 2024-01-26 11:11:35 -05:00
parent b6cfb1dd75
commit 6d34bfcef5
2 changed files with 7 additions and 7 deletions

View File

@ -355,10 +355,10 @@ Options:
[env: NGROK_EDGE=]
```
### TOKENIZER_CONFIG_PATH
## TOKENIZER_CONFIG_PATH
```shell
--tokenizer-config-path <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=]

View File

@ -368,12 +368,12 @@ struct Args {
#[clap(long, env)]
ngrok_edge: Option<String>,
/// path to the tokenizer config file
/// 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<String>,
/// 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.
/// Display a lot of information about your runtime environment
#[clap(long, short, action)]
env: bool,
}