This commit is contained in:
Ahmed Ibrahim
2025-08-01 19:05:11 -07:00
parent e4d9fc1591
commit 03cd87309b

View File

@@ -14,6 +14,7 @@ use tokio::sync::mpsc;
use tokio::time::timeout;
use tracing::debug;
use tracing::trace;
use tracing::warn;
use crate::ModelProviderInfo;
use crate::client_common::Prompt;
@@ -250,7 +251,7 @@ async fn process_chat_sse<S>(
Ok(v) => v,
Err(_) => continue,
};
trace!("chat_completions received SSE chunk: {chunk:?}");
warn!("chat_completions received SSE chunk: {chunk:?}");
let choice_opt = chunk.get("choices").and_then(|c| c.get(0));