Spaces:
Sleeping
Sleeping
File size: 411 Bytes
367dde4 a59bc9c ffd4434 367dde4 b4c9a83 f4a92ce 834791f 3e35d25 a59bc9c f4a92ce a59bc9c 834791f f4a92ce |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import random
import gradio as gr
def magicEight(message, history):
answers = ["The outlook is good!", "No, sorry", "Maybe", "Ask me again"]
response = random.choice(answers)
return response
chatbot = gr.ChatInterface(
magicEight,
type="messages",
examples=None,
title="Magic Eight Ball",
description="Welcome! 🎱 Ask the Magic Eight Ball your question!"
)
chatbot.launch()
|