Enter architect/editor mode using 2 different models. If no prompt provided, switches to architect/editor mode.
(self, args)
| 1178 | return self._generic_chat_command(args, self.coder.main_model.edit_format) |
| 1179 | |
| 1180 | def cmd_architect(self, args): |
| 1181 | """Enter architect/editor mode using 2 different models. If no prompt provided, switches to architect/editor mode.""" # noqa |
| 1182 | return self._generic_chat_command(args, "architect") |
| 1183 | |
| 1184 | def cmd_context(self, args): |
| 1185 | """Enter context mode to see surrounding code context. If no prompt provided, switches to context mode.""" # noqa |
nothing calls this directly
no test coverage detected