FirstChatBot / app.py
TeahReichenbaum's picture
CreateEchoFunctionCorrect.py
fc5793f verified
raw
history blame
118 Bytes
import gradio as gr
def echo(message,history):
return message
chatbot = gr.ChatInterface(echo)
chatbot.launch()