Merge pull request #11464 from FabioPolito24/docling_context_extraction_engine

feat: Docling context extraction engine
This commit is contained in:
Timothy Jaeryang Baek
2025-03-09 20:57:48 -03:00
committed by GitHub
5 changed files with 86 additions and 0 deletions

View File

@@ -1654,6 +1654,12 @@ TIKA_SERVER_URL = PersistentConfig(
os.getenv("TIKA_SERVER_URL", "http://tika:9998"), # Default for sidecar deployment
)
DOCLING_SERVER_URL = PersistentConfig(
"DOCLING_SERVER_URL",
"rag.docling_server_url",
os.getenv("DOCLING_SERVER_URL", "http://docling:5001"),
)
DOCUMENT_INTELLIGENCE_ENDPOINT = PersistentConfig(
"DOCUMENT_INTELLIGENCE_ENDPOINT",
"rag.document_intelligence_endpoint",