import gradio as gr import random print("✨ Welcome to Magic 🎱 Ball. ✨ Ask me any question... ") def magicEight(message, history): answers = ["The outlook is good!", "No, sorry", "Maybe", "Ask me again"] message = random.choice(answers) return message chatbot = gr.ChatInterface(magicEight, type="messages") chatbot.launch()