File size: 416 Bytes
ffd4434
367dde4
ffd4434
c9cd892
367dde4
 
 
b4c9a83
367dde4
ecc358c
834791f
3e35d25
 
834791f
ffd4434
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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, chatbot="Welcome! Ask the Magic Eight Ball your question!", type="messages")

chatbot.launch()