FirstChatBot / app.py
TeahReichenbaum's picture
Title.py
6696fb5 verified
raw
history blame
286 Bytes
import gradio as gr
import random
# def echo (message, hisotry)
# return (message)
def yesNoRandom(message,history):
repsonse=["yes","no"]
return random.choice(repsonse)
chatbot = gr.ChatInterface(yesNoRandom, type = "messages", title = "Yes or No Bot")
chatbot.launch()