Skip to content

Commit

Permalink
make tokeziner name required for dev ex (#718)
Browse files Browse the repository at this point in the history
  • Loading branch information
magdyksaleh authored Dec 16, 2024
1 parent abf9f39 commit 170aae1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
3 changes: 2 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 1 addition & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
[workspace]
members = [
"router",
"router/client",
"router/grpc-metadata",
"launcher"
]
members = ["router", "router/client", "router/grpc-metadata", "launcher"]

[workspace.package]
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ axum = { version = "0.7", features = ["json", "macros"] }
axum-tracing-opentelemetry = "0.16"
clap = { version = "4.1.4", features = ["derive", "env"] }
futures = "0.3.26"
home = "=0.5.9"
hf-hub = { version = "0.3.0", features = ["tokio"] }
h2 = "0.3.26"
lorax-client = { path = "client" }
Expand Down
2 changes: 1 addition & 1 deletion router/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ struct Args {
port: u16,
#[clap(default_value = "/tmp/lorax-server-0", long, env)]
master_shard_uds_path: String,
#[clap(default_value = "bigscience/bloom", long, env)]
#[clap(long, env)]
tokenizer_name: String,
#[clap(long, env)]
tokenizer_config_path: Option<String>,
Expand Down

0 comments on commit 170aae1

Please sign in to comment.