diff --git a/crates/zeta/src/zeta.rs b/crates/zeta/src/zeta.rs index b54016eb83..909f21200c 100644 --- a/crates/zeta/src/zeta.rs +++ b/crates/zeta/src/zeta.rs @@ -2063,6 +2063,10 @@ impl Zeta { cursor_position: language::Anchor, cx: &mut Context, ) { + if !matches!(self.edit_prediction_model, ZetaEditPredictionModel::Zeta2) { + return; + } + if !matches!(&self.options().context, ContextMode::Agentic { .. }) { return; }