@@ -238,12 +238,10 @@ async fn main() -> Result<(), ServerError> {
238
238
let server_info = ApiServer {
239
239
ty : "sd" . to_string ( ) ,
240
240
version : env ! ( "CARGO_PKG_VERSION" ) . to_string ( ) ,
241
- plugin_version : "Unknown" . to_string ( ) ,
242
241
port : addr. port ( ) . to_string ( ) ,
243
242
image_model : Some ( ModelConfig {
244
243
name : cli. model_name ,
245
244
ty : "image" . to_string ( ) ,
246
- ..Default :: default ( )
247
245
} ) ,
248
246
extras : HashMap :: new ( ) ,
249
247
} ;
@@ -461,8 +459,6 @@ pub(crate) struct ApiServer {
461
459
#[ serde( rename = "type" ) ]
462
460
ty : String ,
463
461
version : String ,
464
- #[ serde( rename = "ggml_plugin_version" ) ]
465
- plugin_version : String ,
466
462
port : String ,
467
463
#[ serde( skip_serializing_if = "Option::is_none" ) ]
468
464
image_model : Option < ModelConfig > ,
@@ -476,31 +472,4 @@ pub(crate) struct ModelConfig {
476
472
// type: image
477
473
#[ serde( rename = "type" ) ]
478
474
ty : String ,
479
- pub ctx_size : u64 ,
480
- pub batch_size : u64 ,
481
- pub ubatch_size : u64 ,
482
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
483
- pub n_predict : Option < i32 > ,
484
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
485
- pub reverse_prompt : Option < String > ,
486
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
487
- pub n_gpu_layers : Option < u64 > ,
488
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
489
- pub use_mmap : Option < bool > ,
490
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
491
- pub temperature : Option < f64 > ,
492
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
493
- pub top_p : Option < f64 > ,
494
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
495
- pub repeat_penalty : Option < f64 > ,
496
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
497
- pub presence_penalty : Option < f64 > ,
498
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
499
- pub frequency_penalty : Option < f64 > ,
500
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
501
- pub split_mode : Option < String > ,
502
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
503
- pub main_gpu : Option < u64 > ,
504
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
505
- pub tensor_split : Option < String > ,
506
475
}
0 commit comments