palbha commited on
Commit
fd28ea9
·
verified ·
1 Parent(s): 5413e87

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ def transcribe_audio(audio_path):
22
  # In a real app, you would connect to a speech-to-text service
23
  response = client.models.generate_content(
24
  model='gemini-2.0-flash',
25
- contents=['Transcribe the input audio & just return the transcription', audio_path]
26
  )
27
  print(response.text)
28
 
 
22
  # In a real app, you would connect to a speech-to-text service
23
  response = client.models.generate_content(
24
  model='gemini-2.0-flash',
25
+ contents=['Transcribe the input audio & return the transcription only Example - Audio file is transcribed to Hello then just return Hello', audio_path]
26
  )
27
  print(response.text)
28