ChatBot_Lab / app.py
AriniR's picture
Update app.py
74b55b0 verified
raw
history blame
409 Bytes
import gradio as gr
import random
def random_message (message, history):
choices = ('yes','no','i dont think so','be so for real','yep', 'woooow', 'hmmmm', 'idk', 'idc', 'yaaay', 'why would i know')
wow = random.choice(choices)
theme = soft
live=True
return wow
chatbot = gr.ChatInterface(random_message, type = "messages", title = "chatty")
chatbot.launch()
# repeats messages.