Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| import random | |
| #def echo(message, history): | |
| # return message | |
| def brainrot(message, history): | |
| return random.choice(["It depends", "Try gambling instead", "Oink Oink"]) | |
| print("hola") | |
| chatbot = gr.ChatInterface(brainrot, type = 'messages') | |
| #declaring chatbot | |
| chatbot.launch() | |