Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
4 |
|
5 |
-
|
6 |
-
return "fake transcription"
|
7 |
-
|
8 |
-
gr.Interface(transcribe, gr.Audio(type="filepath"), gr.Textbox()).launch(mcp_server=True)
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
def audio_reverse(x):
|
4 |
+
"""
|
5 |
+
Reverses audio
|
6 |
+
"""
|
7 |
+
return x
|
8 |
|
9 |
+
app, _, _ = gr.Interface(audio_reverse, "audio", "audio").launch(mcp_server=True)
|
|
|
|
|
|