StreamingEditFileTool: Disable for now (#47658)

Michael Benfield created

Release Notes:

- N/A

Change summary

crates/agent/src/thread.rs | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)

Detailed changes

crates/agent/src/thread.rs 🔗

@@ -8,7 +8,7 @@ use crate::{
 };
 use acp_thread::{MentionUri, UserMessageId};
 use action_log::ActionLog;
-use feature_flags::{AgentV2FeatureFlag, FeatureFlagAppExt as _, SubagentsFeatureFlag};
+use feature_flags::{FeatureFlagAppExt as _, SubagentsFeatureFlag};
 
 use agent_client_protocol as acp;
 use agent_settings::{
@@ -2292,8 +2292,7 @@ impl Thread {
             }
         }
 
-        let use_streaming_edit_tool =
-            cx.has_flag::<AgentV2FeatureFlag>() && model.supports_streaming_tools();
+        let use_streaming_edit_tool = false;
 
         let mut tools = self
             .tools