chatbotLab / app.py
denizd's picture
Update app.py
e17b8ae verified
raw
history blame contribute delete
315 Bytes
import gradio as gr
import random
def magic_eight_ball(message, history):
responses = ["Yes, definitely!", "No not at all." , "If you put your heart into it! Of course!", "I'm not sure.." , "Ask again later!"]
return random.choice(responses)
chatbot = gr.ChatInterface(magic_eight_ball)
chatbot.launch()