Closed kimxw closed 4 months ago
Expected black box
file_path = "backend/testing/test2.mp3" with open(file_path, "rb") as f: mp3_data = f.read() file_obj = io.BytesIO(mp3_data) transcription_text = transcribe(file_obj) meeting = Meeting(transcription_text) print(meeting.generate_summary) print(meeting.generate_todo)
Expected black box