Spaces:
Sleeping
Sleeping
| import random | |
| imoport gradio as gr | |
| def random_response(message, history): | |
| return random.choice(["Yes", "No"]) | |
| demo = gr.ChatInterface(fn=random_response, type="messages", autofocus= 'False', title= 'Random answer chatbot') | |
| demo.launch() |