mirror of
https://github.com/docling-project/docling-serve.git
synced 2025-11-29 00:23:36 +00:00
9 lines
214 B
Python
9 lines
214 B
Python
from functools import lru_cache
|
|
|
|
from docling_serve.engines.async_local.orchestrator import AsyncLocalOrchestrator
|
|
|
|
|
|
@lru_cache
|
|
def get_orchestrator() -> AsyncLocalOrchestrator:
|
|
return AsyncLocalOrchestrator()
|