delete printlns

This commit is contained in:
ErikKaumk 2024-07-12 14:44:15 +02:00
parent 57c313df9c
commit 3a1482720f

View File

@ -296,7 +296,6 @@ async fn main() -> Result<(), RouterError> {
} }
}; };
println!("tokenizer_filename: {:?}", tokenizer_filename);
let config: Option<Config> = config_filename.and_then(|filename| { let config: Option<Config> = config_filename.and_then(|filename| {
@ -356,7 +355,6 @@ async fn main() -> Result<(), RouterError> {
tracing::warn!("Rust input length validation and truncation is disabled"); tracing::warn!("Rust input length validation and truncation is disabled");
} }
println!("Using config {config:?}");
// if pipeline-tag == text-generation we default to return_full_text = true // if pipeline-tag == text-generation we default to return_full_text = true
let compat_return_full_text = match &model_info.pipeline_tag { let compat_return_full_text = match &model_info.pipeline_tag {