| | |
| | | description="", |
| | | ) |
| | | |
| | | app.include_router(auth_router, prefix='/auth', tags=["auth"]) |
| | | app.include_router(chat_router, prefix='/chat', tags=["chat"]) |
| | | app.include_router(agent_router, prefix='/agent', tags=["agent"]) |
| | | app.include_router(auth_router, prefix='/api/auth', tags=["auth"]) |
| | | app.include_router(chat_router, prefix='/api/chat', tags=["chat"]) |
| | | app.include_router(agent_router, prefix='/api/agent', tags=["agent"]) |
| | | app.include_router(excel_router, prefix='/document', tags=["document"]) |
| | | |
| | | if __name__ == "__main__": |