use envoy 1.37 and fix operation name

This commit is contained in:
Adil Hafeez 2026-02-07 13:31:58 -08:00
parent c999b36c41
commit 7d75b340b5
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
3 changed files with 6 additions and 3 deletions

View file

@ -316,10 +316,10 @@ async fn llm_chat_inner(
get_active_span(|span| {
let span_name = if model_from_request == resolved_model {
format!("(llm) {} {}", request_path, resolved_model)
format!("POST {} {}", request_path, resolved_model)
} else {
format!(
"(llm) {} {} -> {}",
"POST {} {} -> {}",
request_path, model_from_request, resolved_model
)
};