diff --git a/aider/commands.py b/aider/commands.py index fbc1a1a03..aac8583bd 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1088,6 +1088,15 @@ class Commands: show_announcements=False, ) + def completions_ask(self): + return self.completions_add() + + def completions_code(self): + return self.completions_add() + + def completions_architect(self): + return self.completions_add() + def cmd_ask(self, args): """Ask questions about the code base without editing any files. If no prompt provided, switches to ask mode.""" # noqa return self._generic_chat_command(args, "ask")