hello-chatbot / app.py
bizarrotot's picture
Upload app.py
952c270
raw
history blame
No virus
158 Bytes
import random
import gradio as gr
def random_response(message, history):
return random.choice(["Yes", "No"])
gr.ChatInterface(random_response).launch()