chore: clippy again

This commit is contained in:
yavens 2025-04-10 20:01:43 -04:00
parent 4f023046d5
commit ce37d44b15
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ impl StreamingCompletionModel for CompletionModel {
));
};
},
StreamingEvent::ToolCallEnd { .. } => {
StreamingEvent::ToolCallEnd => {
let Some(tc) = current_tool_call.clone() else { continue; };
let Ok(args) = serde_json::from_str(&tc.2) else { continue; };