fix: 修复【应用编排】知识库检索节点 最大应用字符数 不生效

This commit is contained in:
shaohuzhang1 2024-10-29 17:46:25 +08:00 committed by shaohuzhang1
parent e68e5873c9
commit 6890503689

View File

@ -64,7 +64,7 @@ class BaseSearchDatasetNode(ISearchDatasetStepNode):
'is_hit_handling_method_list': [row for row in result if row.get('is_hit_handling_method')],
'data': '\n'.join(
[f"{paragraph.get('title', '')}:{paragraph.get('content')}" for paragraph in
paragraph_list]),
paragraph_list])[0:dataset_setting.get('max_paragraph_char_number', 5000)],
'directly_return': '\n'.join(
[f"{paragraph.get('title', '')}:{paragraph.get('content')}" for paragraph in result if
paragraph.get('is_hit_handling_method')]),