Code-Along / app.py
ssteinkwk1's picture
created chatbot echo
0e20600 verified
Raw
History Blame Contribute Delete
118 Bytes
import gradio as gr
def echo(message, history):
return message
chatbot = gr.ChatInterface(echo)
chatbot.launch()