ChatbotLab / app.py
dyna-67's picture
fixed yes or no
5e7450f verified
Raw
History Blame Contribute Delete
212 Bytes
import gradio as gr
import random
def random_response (message, history) :
response_options = ["yes","no"]
return random.chioce(response_options)
chatbot = gr.ChatInterface(echo)
chatbot.launch()