diff --git a/aider/commands.py b/aider/commands.py index 981e0143b..f53490c1e 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -434,9 +434,11 @@ class Commands: else: self.io.tool_output(f"{cmd} No description available.") + from .voice import record_and_transcribe + def cmd_voice(self, args): - "Respond with 'hi gpt'" - return 'hi gpt' + "Record and transcribe voice input" + return record_and_transcribe() def expand_subdir(file_path):