File size: 173 Bytes
990b4f2
 
c9848e2
 
 
 
 
f9c8e63
c9848e2
1
2
3
4
5
6
7
8
9
import gradio as gr

def audio_reverse(x):
    """
    Reverses audio
    """
    return x

app, _, _ = gr.Interface(audio_reverse, "audio", "audio").launch(mcp_server=True)