chatbotLab / app.py
arohi-k's picture
added random element
cd2baca verified
raw
history blame
263 Bytes
import gradio as gr
import random
def echo(message, history):
choices = ["yes", "no", "maybe"]
random_element = random.choice(choices)
print(random_element)
return message
chatbot = gr.ChatInterface(echo, type = "messages")
chatbot.launch()