Add new env variable to compose file

This commit is contained in:
Weves
2023-11-20 21:39:42 -08:00
committed by Chris Weaver
parent e052d607d5
commit 1225c663eb
2 changed files with 5 additions and 0 deletions

View File

@@ -246,6 +246,8 @@ JOB_TIMEOUT = 60 * 60 * 6 # 6 hours default
LOG_ALL_MODEL_INTERACTIONS = (
os.environ.get("LOG_ALL_MODEL_INTERACTIONS", "").lower() == "true"
)
# If set to `true` will enable additional logs about Vespa query performance
# (time spent on finding the right docs + time spent fetching summaries from disk)
LOG_VESPA_TIMING_INFORMATION = (
os.environ.get("LOG_VESPA_TIMING_INFORMATION", "").lower() == "true"
)