KWK / app.py
PurpleStorm95's picture
magic eight iteration 4
bf77835 verified
Raw
History Blame Contribute Delete
325 Bytes
import gradio as gr
import random
def random_response(message, history):
response_options = ["yes", "no", "maybe", "try again"]
return random.choice(response_options)
chatbot = gr.ChatInterface(
random_response,
title = "Magic Eight Ball",
description = "I can predict your future!"
)
chatbot.launch()