SiyuiLam's picture
Create app.py
cdefadf
raw
history blame contribute delete
No virus
171 Bytes
import random
import gradio as gr
def random_response(message, history):
return random.choice(["Yes", "No"])
demo = gr.ChatInterface(random_response)
demo.launch()