import gradio as gr def greet(audio): return audio demo = gr.Interface(fn=greet, inputs="audio", outputs="audio") demo.launch()