KWK_lesson_10 / app.py
abi-codes's picture
Update app.py
a95007f verified
raw
history blame contribute delete
453 Bytes
import gradio as gr
import random
def echo(message, history):
return(message)
def yes_no(messsage, history):
responses = ["Yes", "No", "Maybe", "Definitely", "Ask me later", "Absolutely not"]
return random.choice(responses)
print("Hello, World")
chatbot = gr.ChatInterface(yes_no, type="messages", title="8 ball", description="Ask it questions and it well tell you if it will happen or not", theme='earneleh/paris')
chatbot.launch()