mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-07-07 13:10:24 +02:00
Add new env variable to compose file
This commit is contained in:
@ -246,6 +246,8 @@ JOB_TIMEOUT = 60 * 60 * 6 # 6 hours default
|
|||||||
LOG_ALL_MODEL_INTERACTIONS = (
|
LOG_ALL_MODEL_INTERACTIONS = (
|
||||||
os.environ.get("LOG_ALL_MODEL_INTERACTIONS", "").lower() == "true"
|
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 = (
|
LOG_VESPA_TIMING_INFORMATION = (
|
||||||
os.environ.get("LOG_VESPA_TIMING_INFORMATION", "").lower() == "true"
|
os.environ.get("LOG_VESPA_TIMING_INFORMATION", "").lower() == "true"
|
||||||
)
|
)
|
||||||
|
@ -58,6 +58,9 @@ services:
|
|||||||
- LOG_LEVEL=${LOG_LEVEL:-info}
|
- LOG_LEVEL=${LOG_LEVEL:-info}
|
||||||
# Log all of the prompts to the LLM
|
# Log all of the prompts to the LLM
|
||||||
- LOG_ALL_MODEL_INTERACTIONS=${LOG_ALL_MODEL_INTERACTIONS:-info}
|
- LOG_ALL_MODEL_INTERACTIONS=${LOG_ALL_MODEL_INTERACTIONS:-info}
|
||||||
|
# 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=${LOG_VESPA_TIMING_INFORMATION:-}
|
||||||
volumes:
|
volumes:
|
||||||
- local_dynamic_storage:/home/storage
|
- local_dynamic_storage:/home/storage
|
||||||
- file_connector_tmp_storage:/home/file_connector_storage
|
- file_connector_tmp_storage:/home/file_connector_storage
|
||||||
|
Reference in New Issue
Block a user