testc / app.py
abidlabs's picture
abidlabs HF Staff
Create app.py
beebcc5 verified
raw
history blame
219 Bytes
import random
import gradio as gr
def random_response(message, history):
return random.choice(["Yes", "No"])
demo = gr.ChatInterface(random_response, type="messages")
if __name__ == "__main__":
demo.launch()