Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -77,11 +77,18 @@ def chat_interface(audio):
|
|
77 |
return outputs
|
78 |
|
79 |
|
80 |
-
|
81 |
-
title
|
82 |
-
fn=
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
)
|
87 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
return outputs
|
78 |
|
79 |
|
80 |
+
gr.Interface(
|
81 |
+
title="Effortless Transcription: Turn Speech to Text Instantly",
|
82 |
+
fn=ai_assistant,
|
83 |
+
inputs=[
|
84 |
+
gr.inputs.Audio(
|
85 |
+
source="microphone", type="filepath", label="Record your voice"
|
86 |
+
),
|
87 |
+
gr.inputs.File(label="Upload an audio file (optional)"),
|
88 |
+
],
|
89 |
+
outputs=[
|
90 |
+
"textbox"
|
91 |
+
],
|
92 |
+
theme="darkly"
|
93 |
+
).launch()
|
94 |
+
|