File size: 310 Bytes
935be53
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr

def my_chatbot(message):
    return "Hello, " + message

# bind it to gradio
interface = gr.Interface(fn = my_chatbot, 
                         title = "Hello, Gradio!",
                         inputs = "text", 
                         outputs = "text")

interface.launch(share = True)