File size: 121 Bytes
ffd4434
 
 
 
 
32d5a39
ffd4434
1
2
3
4
5
6
7
import gradio as gr

def echo(messsage,history):
    return messsage
    
chatbot=gr.ChatInterface(echo)
chatbot.launch()