FirstChatBot / app.py
TeahReichenbaum's picture
CreateRandomYesOrNo.py
0a698fb verified
raw
history blame
206 Bytes
import gradio as gr
import random
def yesNoRandom(message,history):
repsonse=["yes","no"]
return random.choice(repsonse)
chatbot = gr.ChatInterface(yesNoRandom, type = "message")
chatbot.launch()