ChatBot_Lab / app.py
AriniR's picture
Update app.py
c5379e7 verified
raw
history blame
216 Bytes
import gradio as gr
import random
def echo (message, history):
choices = ('yes','no')
wow = random.choice(choices)
return wow
chatbot = gr.ChatInterface(echo)
chatbot.launch()
# repeats messages.