Remove editor notification before tool execution
Seto Elkahfi committed
Apr 24, 2026 at 01:40 UTC
cc215f35ecf9b0afb6b8164694da1522e29fc5fd
1 file changed
-12
src/main.rs
-12
index 33f0d23..1fe106d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -220,18 +220,6 @@ impl Agent for SiGitAgent {
tc.arguments.chars().take(120).collect::<String>()
);
- // Notify the editor that we're calling a tool.
- let status_text = format!("🔧 `{}`\n", tc.function_name);
- let _ = self
- .notification_tx
- .send(SessionNotification::new(
- session_id.clone(),
- SessionUpdate::AgentMessageChunk(ContentChunk::new(ContentBlock::from(
- status_text,
- ))),
- ))
- .await;
-
// Execute the tool.
let output = tools::execute_tool(&tc.function_name, &tc.arguments);