add INDEXING_CHUNK_INSERT_BATCH_SIZE config

This commit is contained in:
CREDO23 2026-06-17 14:59:19 +02:00
parent 0fe650fd8e
commit 220d9c4fbb

View file

@ -959,6 +959,9 @@ class Config:
CHUNK_RECONCILE_ENABLED = (
os.getenv("CHUNK_RECONCILE_ENABLED", "true").strip().lower() == "true"
)
INDEXING_CHUNK_INSERT_BATCH_SIZE = int(
os.getenv("INDEXING_CHUNK_INSERT_BATCH_SIZE", "200")
)
# Proxy provider selection. Maps to a ProxyProvider implementation registered
# in app/utils/proxy/registry.py. Add new vendors there and switch via this var.