From 61315388cf0d697c8d053d74dc7ecb32f3400517 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Fri, 18 Apr 2025 20:27:25 -0600 Subject: [PATCH] Replace todo! with TODO: to avoid formatting issue We want to fix this soon. Co-authored-by: Michael Sloan --- crates/agent/src/thread.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/agent/src/thread.rs b/crates/agent/src/thread.rs index f750b4838f..c50c001cd2 100644 --- a/crates/agent/src/thread.rs +++ b/crates/agent/src/thread.rs @@ -1612,7 +1612,7 @@ impl Thread { /// Insert an empty message to be populated with tool results upon send. pub fn attach_tool_results(&mut self, cx: &mut Context) { - // todo!(Before merging, figure out it's necessary to do this as a user message - fails with "thinking" model) + // TODO: Don't insert a dummy user message here. Ensure this works with the thinking model. // Insert a user message to contain the tool results. self.insert_user_message("Here are the tool results.", Vec::new(), None, cx); }