diff --git a/aider/voice.py b/aider/voice.py index 9b513af51..36a31846f 100644 --- a/aider/voice.py +++ b/aider/voice.py @@ -34,3 +34,6 @@ def record_and_transcribe(): # Return the transcription return response['choices'][0]['text'] + +if __name__ == "__main__": + print(record_and_transcribe())