""" | |
Chatbot Nuevo Régimen Académico | |
""" | |
from chatbot.ui import ChatbotInterface | |
def respond(message, history): | |
return "Ok" | |
if __name__ == "__main__": | |
ui = ChatbotInterface(respond) | |
ui.app.launch() | |
""" | |
Chatbot Nuevo Régimen Académico | |
""" | |
from chatbot.ui import ChatbotInterface | |
def respond(message, history): | |
return "Ok" | |
if __name__ == "__main__": | |
ui = ChatbotInterface(respond) | |
ui.app.launch() | |