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

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

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