mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-06-04 03:59:25 +02:00
Default Empty Timeout Value breaks Docker Compose (#292)
This commit is contained in:
parent
e0cbd087f7
commit
bb58dce1c5
@ -115,7 +115,7 @@ NUM_RERANKED_RESULTS = 15
|
|||||||
NUM_GENERATIVE_AI_INPUT_DOCS = 5
|
NUM_GENERATIVE_AI_INPUT_DOCS = 5
|
||||||
# 1 edit per 2 characters, currently unused due to fuzzy match being too slow
|
# 1 edit per 2 characters, currently unused due to fuzzy match being too slow
|
||||||
QUOTE_ALLOWED_ERROR_PERCENT = 0.05
|
QUOTE_ALLOWED_ERROR_PERCENT = 0.05
|
||||||
QA_TIMEOUT = int(os.environ.get("QA_TIMEOUT", "10")) # 10 seconds
|
QA_TIMEOUT = int(os.environ.get("QA_TIMEOUT") or "10") # 10 seconds
|
||||||
# Include additional document/chunk metadata in prompt to GenerativeAI
|
# Include additional document/chunk metadata in prompt to GenerativeAI
|
||||||
INCLUDE_METADATA = False
|
INCLUDE_METADATA = False
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user