Update Launcher Docs

Removing Option
This commit is contained in:
Kevin Duffy 2024-06-20 09:43:39 +01:00
parent cb8f999edc
commit c27ae68d50
2 changed files with 8 additions and 8 deletions

View File

@ -341,6 +341,7 @@ Options:
```shell ```shell
--otlp-service-name <OTLP_SERVICE_NAME> --otlp-service-name <OTLP_SERVICE_NAME>
[env: OTLP_SERVICE_NAME=] [env: OTLP_SERVICE_NAME=]
[default: text-generation-inference.router]
``` ```
## CORS_ALLOW_ORIGIN ## CORS_ALLOW_ORIGIN

View File

@ -414,7 +414,7 @@ struct Args {
otlp_endpoint: Option<String>, otlp_endpoint: Option<String>,
#[clap(default_value = "text-generation-inference.router", long, env)] #[clap(default_value = "text-generation-inference.router", long, env)]
otlp_service_name: Option<String>, otlp_service_name: String,
#[clap(long, env)] #[clap(long, env)]
cors_allow_origin: Vec<String>, cors_allow_origin: Vec<String>,
@ -559,10 +559,8 @@ fn shard_manager(
} }
// OpenTelemetry Service Name // OpenTelemetry Service Name
if let Some(otlp_endpoint) = otlp_endpoint {
shard_args.push("--otlp-service-name".to_string()); shard_args.push("--otlp-service-name".to_string());
shard_args.push(otlp_service_name); shard_args.push(otlp_service_name);
}
// In case we use sliding window, we may ignore the sliding in flash for some backends depending on the parameter. // In case we use sliding window, we may ignore the sliding in flash for some backends depending on the parameter.
shard_args.push("--max-input-tokens".to_string()); shard_args.push("--max-input-tokens".to_string());
@ -1220,9 +1218,10 @@ fn spawn_webserver(
} }
// OpenTelemetry // OpenTelemetry
if args.otlp_service_name { let otlp_service_name = args.otlp_service_name;
router_args.push("--otlp-service-name".to_string()); router_args.push("--otlp-service-name".to_string());
} router_args.push(otlp_service_name);
// CORS origins // CORS origins
for origin in args.cors_allow_origin.into_iter() { for origin in args.cors_allow_origin.into_iter() {