File size: 119 Bytes
63c2a95
 
061eeea
63c2a95
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

def echo(message, history):
    return message

chatbot = gr.ChatInterface(echo)

chatbot.launch()