File size: 347 Bytes
2424621
0bbf205
2424621
c87632a
 
 
2424621
3398d9a
2424621
1
2
3
4
5
6
7
8
9
import gradio as gr
import random

def magic_eight_ball(message, history):
    responses=["Yes!","No.","Yes, definetely!", "Most Likely."]
    return random.choice(responses)

chatbot = gr.ChatInterface(magic_eight_ball, type="messages",title="Magic 8 Ball",description="Ask me your most pressing questions!",theme="calm_seafoam")
chatbot.launch()