jasminemomoko's picture
Update app.py
8f6a371 verified
raw
history blame contribute delete
513 Bytes
import gradio as gr
import random
def magic_eight_ball(message, history):
responses = ["Signs point to yes", "Outlook not so good", "It is certain",
"Ask again later", "Don't count on it", "Very doubtful"]
return random.choice(responses)
chatbot = gr.ChatInterface(magic_eight_ball, type="messages", title="Magic Eight Ball",
description="This magic eight ball answers your questions!",
theme='shivi/calm_seafoam')
chatbot.launch()