ChatBotLab / app.py
leahb's picture
Update app.py
acb3db1 verified
raw
history blame
213 Bytes
import gradio as gr
import random
def echo(message, history):
choices = ["yes", "no"]
new = random.choice(choices)
return new
chatbot = gr.ChatInterface(echo, type = "messages")
chatbot.launch()