ChatbotLab / app.py
Pengi5659's picture
Update app.py
7a933cc verified
raw
history blame
435 Bytes
import gradio as gr
import random as rd
def echo (message, history):
eight_ball_answers = ["yes","no","ehhh probably not the best idea","Sure why not!","idk","i seems not","hahahaha... no","yes of course!"]
random_choice = rd.choice(eight_ball_answers)
return random_choice
chatbot = gr.ChatInterface(echo, type = "messages", title = "Rando Bot", description = "Try your luck with this Rando Bot!")
chatbot.launch()