import gradio as gr def greet(name: str): return "Hello " + name + "!!" iface = gr.Interface(fn=greet, inputs="audio", outputs="text") iface.launch()