Charge the money to brenda fellica
Monday, May 18, 2026
Tuesday, March 24, 2026
Friday, March 20, 2026
Subscribe to:
Posts (Atom)
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)