palbha commited on
Commit
ec99c04
·
verified ·
1 Parent(s): 6f0b49b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -22,8 +22,9 @@ 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=['Describe this audio clip', audio_path]
26
  )
 
27
 
28
  return response.text
29
 
 
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
 
29
  return response.text
30