cquintero4told

Results 1 comments of cquintero4told

Try with this code: ```python with tempfile.NamedTemporaryFile(suffix='.mp3') as temp_file: temp_file.write(audio_file) temp_file.flush() temp_file.seek(0) transcript_read = openai.Audio.transcribe("whisper-1", temp_file) ```