mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-15 19:10:47 +02:00
# Description of Changes - Use pool for postgres connections - Add ability to require user ID to be set on API calls to the engine - Add process-wide concurrency cap on AI access (in addition to existing user caps) - Allow number of workers (threads) to be specified for stirling engine - Update env var names to reflect that the DB is not just for RAG
11 lines
247 B
Python
11 lines
247 B
Python
"""Configuration models and loaders for the Stirling AI service."""
|
|
|
|
from .settings import ENGINE_ROOT, AppSettings, DocumentsBackend, load_settings
|
|
|
|
__all__ = [
|
|
"ENGINE_ROOT",
|
|
"AppSettings",
|
|
"DocumentsBackend",
|
|
"load_settings",
|
|
]
|