testing / app.py
Caslow's picture
e
a6d228d
raw
history blame
199 Bytes
import gradio as gr
import random
def random_response(message, history):
return random.choice(['y', 'n'])
if __name__ == "__main__":
demo = gr.ChatInterface(random_response)
demo.launch()