AskMe / app.py
Xinyu Wang
Add application file
478cf05
raw
history blame
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()