crates/zeta/src/zeta.rs 🔗
@@ -2063,6 +2063,10 @@ impl Zeta {
cursor_position: language::Anchor,
cx: &mut Context<Self>,
) {
+ if !matches!(self.edit_prediction_model, ZetaEditPredictionModel::Zeta2) {
+ return;
+ }
+
if !matches!(&self.options().context, ContextMode::Agentic { .. }) {
return;
}