palbha commited on
Commit
8d78c88
·
verified ·
1 Parent(s): ec99c04

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', 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 & just return the transcription', audio_path]
26
  )
27
  print(response.text)
28