Remove unused parameters annd force tokenizer name to be set

This commit is contained in:
Morgan Funtowicz 2024-07-01 16:11:59 +02:00
parent 47ac5c654d
commit 6dc98abe46
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ struct Args {
hostname: String,
#[clap(default_value = "3000", long, short, env)]
port: u16,
#[clap(default_value = "bigscience/bloom", long, env)]
#[clap(long, env, required = true)]
tokenizer_name: String,
#[clap(long, env)]
tokenizer_config_path: Option<String>,