Improving reliability, using prompt parameter

#111
by dcd12345678 - opened

Hello
Is there a way to give it a list of business words so that it makes the transcription better, something similar to how the openai api does
something like this
from openai import OpenAI
client = OpenAI()

audio_file = open("/path/to/file/speech.mp3", "rb")
transcription = client.audio.transcriptions.create(
model="whisper-1",
file=audio_file,
response_format="text",
prompt="ZyntriQix, Digique Plus, CynapseFive, VortiQore V8, EchoNix Array, OrbitalLink Seven, DigiFractal Matrix, PULSE, RAPT, B.R.I.C.K., Q.U.A.R.T.Z., F.L.I.N.T."
)
https://platform.openai.com/docs/guides/speech-to-text/improving-reliability

Sign up or log in to comment