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