Landing AI integrado

This commit is contained in:
Sebastian
2025-11-06 13:29:43 +00:00
parent 7c6e8c4858
commit c03d0e27c4
32 changed files with 3908 additions and 728 deletions

View File

@@ -8,6 +8,8 @@ import logging
from .routers.files import router as files_router
from .routers.vectors import router as vectors_router
from .routers.chunking import router as chunking_router
from .routers.schemas import router as schemas_router
from .routers.chunking_landingai import router as chunking_landingai_router
from .core.config import settings
# from routers.ai import router as ai_router # futuro con Azure OpenAI
@@ -112,6 +114,12 @@ app.include_router(
tags=["chunking"]
)
# Schemas router (nuevo)
app.include_router(schemas_router)
# Chunking LandingAI router (nuevo)
app.include_router(chunking_landingai_router)
# Router para IA
# app.include_router(
# ai_router,