Spaces:
Sleeping
Sleeping
| 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() | |