mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-09-12 04:44:52 +00:00
delete json_output and ngrok
This commit is contained in:
parent
796c5cbf38
commit
713abb7073
@ -15,7 +15,6 @@ As of release 2.1.2 this is an example of the data collected:
|
||||
{
|
||||
"event_type": "start",
|
||||
"disable_grammar_support": false,
|
||||
"json_output": false,
|
||||
"max_batch_prefill_tokens": 4096,
|
||||
"max_batch_size": null,
|
||||
"max_batch_total_tokens": null,
|
||||
@ -31,7 +30,6 @@ As of release 2.1.2 this is an example of the data collected:
|
||||
"model_config": {
|
||||
"model_type": "bloom"
|
||||
},
|
||||
"ngrok": false,
|
||||
"revision": null,
|
||||
"tokenizer_class": "BloomTokenizerFast",
|
||||
"validation_workers": 2,
|
||||
|
@ -402,8 +402,6 @@ async fn main() -> Result<(), RouterError> {
|
||||
max_batch_size,
|
||||
revision,
|
||||
validation_workers,
|
||||
json_output,
|
||||
ngrok,
|
||||
messages_api_enabled,
|
||||
disable_grammar_support,
|
||||
max_client_batch_size,
|
||||
|
@ -74,8 +74,6 @@ pub struct Args {
|
||||
max_batch_size: Option<usize>,
|
||||
revision: Option<String>,
|
||||
validation_workers: usize,
|
||||
json_output: bool,
|
||||
ngrok: bool,
|
||||
messages_api_enabled: bool,
|
||||
disable_grammar_support: bool,
|
||||
max_client_batch_size: usize,
|
||||
@ -101,8 +99,6 @@ impl Args {
|
||||
max_batch_size: Option<usize>,
|
||||
revision: Option<String>,
|
||||
validation_workers: usize,
|
||||
json_output: bool,
|
||||
ngrok: bool,
|
||||
messages_api_enabled: bool,
|
||||
disable_grammar_support: bool,
|
||||
max_client_batch_size: usize,
|
||||
@ -125,8 +121,6 @@ impl Args {
|
||||
max_batch_size,
|
||||
revision,
|
||||
validation_workers,
|
||||
json_output,
|
||||
ngrok,
|
||||
messages_api_enabled,
|
||||
disable_grammar_support,
|
||||
max_client_batch_size,
|
||||
|
Loading…
Reference in New Issue
Block a user