Add comment to clarify LLM cache setting for entity extraction
This commit is contained in:
parent
6e1b5d6ce6
commit
7ea1856699
1 changed files with 2 additions and 2 deletions
|
|
@ -919,7 +919,7 @@ def create_app(args):
|
|||
vector_db_storage_cls_kwargs={
|
||||
"cosine_better_than_threshold": args.cosine_threshold
|
||||
},
|
||||
enable_llm_cache_for_entity_extract=False,
|
||||
enable_llm_cache_for_entity_extract=False, # set to True for debuging to reduce llm fee
|
||||
embedding_cache_config={
|
||||
"enabled": True,
|
||||
"similarity_threshold": 0.95,
|
||||
|
|
@ -948,7 +948,7 @@ def create_app(args):
|
|||
vector_db_storage_cls_kwargs={
|
||||
"cosine_better_than_threshold": args.cosine_threshold
|
||||
},
|
||||
enable_llm_cache_for_entity_extract=False,
|
||||
enable_llm_cache_for_entity_extract=False, # set to True for debuging to reduce llm fee
|
||||
embedding_cache_config={
|
||||
"enabled": True,
|
||||
"similarity_threshold": 0.95,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue