1 file changed
-12
src/main.rs
-12
@@ -220,18 +220,6 @@ impl Agent for SiGitAgent {
220
tc.arguments.chars().take(120).collect::<String>()
221
);
222
223
- // Notify the editor that we're calling a tool.
224
- let status_text = format!("🔧 `{}`\n", tc.function_name);
225
- let _ = self
226
- .notification_tx
227
- .send(SessionNotification::new(
228
- session_id.clone(),
229
- SessionUpdate::AgentMessageChunk(ContentChunk::new(ContentBlock::from(
230
- status_text,
231
- ))),
232
- ))
233
- .await;
234
-
223
// Execute the tool.
224
let output = tools::execute_tool(&tc.function_name, &tc.arguments);
225