import os from groq import Groq client = Groq() filename = os.path.dirname(__file__) + "/audio.m4a" with open(filename, "rb") as file: transcription = client.audio.transcriptions.create( file=(filename, file.read()), model="whisper-large-v3", language="en", response_format="verbose_json", ) print(transcription.text)

Amazon Shipping