Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| import random as rd | |
| def ran_mes(message, history): | |
| choices = ["yes","no"] | |
| random_choice = rd.choice(choices) | |
| return random_choice | |
| chatbot = gr.ChatInterface(echo, type = "messages") | |
| chatbot.launch() | |