File size: 140 Bytes
e3d565c
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr

def echo(message, history):
	return message

print("Hello, world!")

chatbot = gr.ChatInterface(echo)

chatbot.launch()