Spaces:
Running
Running
Update app.py
Browse files
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 &
|
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 |
|