Update app.py
Browse files
app.py
CHANGED
@@ -41,5 +41,5 @@ def transcribe_triggered():
|
|
41 |
transcription = model.transcribe([recorded_audio])
|
42 |
return transcription[0]
|
43 |
|
44 |
-
iface = gr.Interface(transcribe_triggered, gr.components.
|
45 |
iface.launch()
|
|
|
41 |
transcription = model.transcribe([recorded_audio])
|
42 |
return transcription[0]
|
43 |
|
44 |
+
iface = gr.Interface(transcribe_triggered, gr.components.Audio(), "text", title="ASR with NeMo Canary Model (Triggered by 'Hey Alexa')")
|
45 |
iface.launch()
|