chatbasic / app.py
akhil20187's picture
Update app.py
948f208 verified
raw
history blame
230 Bytes
import gradio as gr
import random
def random_response(message, history):
response = random.choice(["Yes", "No", "Maybe", "I don't know","Who are you"])
return response
demo = gr.ChatInterface(random_response).launch()