import gradio as gr import whisper def greet(name): return "Hello " + name + "!!" with gr.Tabs(): with gr.TabItem('Voicebot'): iface = gr.Interface(fn=greet, inputs="text", outputs="text") iface.launch() # comment