MefhigosetH's picture
Actualizamos Gradio a v5.5.0 y definimos los modulos basicos.
b78b5e5
raw
history blame
216 Bytes
"""
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()