Reading through the Whisper Quickstart Guide it explains how to simply request a transcription: openai.Audio.transcribe("whisper-1", audio_file)
It proceeds to say that to add extra parameters, just add --form lines
which I imagine refers to the REST API, is there a way to set these parameters such as response_format
in python or can this only be done with a CURL request?