diff --git a/crates/assistant2/src/thread.rs b/crates/assistant2/src/thread.rs index b5a42da85b..e7c4036a55 100644 --- a/crates/assistant2/src/thread.rs +++ b/crates/assistant2/src/thread.rs @@ -361,7 +361,7 @@ impl Thread { let result = stream_completion.await; thread - .update(&mut cx, |_thread, cx| match result.as_ref() { + .update(&mut cx, |thread, cx| match result.as_ref() { Ok(stop_reason) => match stop_reason { StopReason::ToolUse => { cx.emit(ThreadEvent::UsePendingTools); @@ -384,6 +384,8 @@ impl Thread { SharedString::from(error_message.clone()), ))); } + + thread.cancel_last_completion(); } }) .ok();