File size: 115 Bytes
3c94c67
 
ce6b304
3eedae0
ce6b304
 
3c94c67
1
2
3
4
5
6
7
import gradio as gr

def echo(message, history):
	return message

chatbot = gr.ChatInterface(echo)
chatbot.launch()