chatbotlab / app.py
elinstallation's picture
Update app.py
126a433 verified
raw
history blame contribute delete
303 Bytes
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()