jasminemomoko's picture
define function & set up chat interface
a914d71 verified
raw
history blame contribute delete
121 Bytes
import gradio as gr
def echo(message, history):
return message
chatbot = gr.ChatInterface(echo)
chatbot.launch()