abidlabs's picture
abidlabs HF Staff
Update app.py
c9848e2 verified
raw
history blame
173 Bytes
import gradio as gr
def audio_reverse(x):
"""
Reverses audio
"""
return x
app, _, _ = gr.Interface(audio_reverse, "audio", "audio").launch(mcp_server=True)