File size: 189 Bytes
95c576f
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr

def chatbot(input_text):
    return "DEMO14gh"

iface = gr.Interface(
    fn=chatbot,
    inputs=gr.inputs.Textbox(),
    outputs=gr.outputs.Textbox()
)

iface.launch()