File size: 118 Bytes
792b9fd
 
 
 
 
57239d1
792b9fd
1
2
3
4
5
6
7
import gradio as gr

def echo(message, history):
    return message

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