File size: 245 Bytes
3b07c2b
60266ca
3b07c2b
 
 
 
60266ca
 
 
 
 
e7b84ec
1
2
3
4
5
6
7
8
9
10
11
12
13
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