PythonCode / app.py
c4r-sty's picture
Added in random msgs; yes or no
44d3cb2 verified
Raw
History Blame
193 Bytes
import gradio as gr
import random
def chance(message, history):
response_options["yes","no"]
return random.choice(response_options)
chatbot = gr.ChatInterface(chance)
chatbot.launch()