first-space / app.py
mmccabe's picture
fix
0b63733 verified
Raw
History Blame Contribute Delete
207 Bytes
import gradio as gr
import random
def yes_or_no(message, history):
responses = ['yes', 'no']
return random.choice(responses)
chatbot = gr.ChatInterface(yes_or_no, type ='messages')
chatbot.launch()