mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-12 10:38:58 +08:00
fix: uninitialized variable error on empty knowledge retrieval(agent) (#20025)
Co-authored-by: crazywoola <427733928@qq.com>
This commit is contained in:
parent
38b1e46241
commit
adca981eee
@ -125,6 +125,7 @@ class DatasetRetrieverTool(DatasetRetrieverBaseTool):
|
|||||||
return ""
|
return ""
|
||||||
# get retrieval model , if the model is not setting , using default
|
# get retrieval model , if the model is not setting , using default
|
||||||
retrieval_model: dict[str, Any] = dataset.retrieval_model or default_retrieval_model
|
retrieval_model: dict[str, Any] = dataset.retrieval_model or default_retrieval_model
|
||||||
|
retrieval_resource_list = []
|
||||||
if dataset.indexing_technique == "economy":
|
if dataset.indexing_technique == "economy":
|
||||||
# use keyword table query
|
# use keyword table query
|
||||||
documents = RetrievalService.retrieve(
|
documents = RetrievalService.retrieve(
|
||||||
@ -181,7 +182,7 @@ class DatasetRetrieverTool(DatasetRetrieverBaseTool):
|
|||||||
score=record.score,
|
score=record.score,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
retrieval_resource_list = []
|
|
||||||
if self.return_resource:
|
if self.return_resource:
|
||||||
for record in records:
|
for record in records:
|
||||||
segment = record.segment
|
segment = record.segment
|
||||||
|
Loading…
x
Reference in New Issue
Block a user