mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-09-11 12:24:53 +00:00
fix: update docs and move arg position in file
This commit is contained in:
parent
f660fcf715
commit
f7a8454d43
@ -354,6 +354,14 @@ Options:
|
|||||||
|
|
||||||
[env: NGROK_EDGE=]
|
[env: NGROK_EDGE=]
|
||||||
|
|
||||||
|
```
|
||||||
|
### 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.
|
||||||
|
|
||||||
|
[env: TOKENIZER_CONFIG_PATH=]
|
||||||
|
|
||||||
```
|
```
|
||||||
## ENV
|
## ENV
|
||||||
```shell
|
```shell
|
||||||
|
@ -368,13 +368,13 @@ struct Args {
|
|||||||
#[clap(long, env)]
|
#[clap(long, env)]
|
||||||
ngrok_edge: Option<String>,
|
ngrok_edge: Option<String>,
|
||||||
|
|
||||||
/// Display a lot of information about your runtime environment
|
|
||||||
#[clap(long, short, action)]
|
|
||||||
env: bool,
|
|
||||||
|
|
||||||
/// path to the tokenizer config file
|
/// path to the tokenizer config file
|
||||||
#[clap(long, env)]
|
#[clap(long, env)]
|
||||||
tokenizer_config_path: Option<String>,
|
tokenizer_config_path: Option<String>,
|
||||||
|
|
||||||
|
/// Display a lot of information about your runtime environment
|
||||||
|
#[clap(long, short, action)]
|
||||||
|
env: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
Loading…
Reference in New Issue
Block a user