ffd4434 834791f ffd4434
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, type="messages") chatbot.launch()