mj-new
Testing tabs
60266ca
raw
history blame
245 Bytes
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