70edcbd
1
2
3
4
5
6
7
8
import gradio as gr def echo(message, history): return message echo_chatbot = gr.ChatInterface(echo) echo_chatbot.launch()