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