fix(knowledge): 移除多余的日志打印

This commit is contained in:
v-zhangjc9
2025-05-28 15:41:36 +08:00
parent 7fd484eeab
commit 6f9c898d51

View File

@@ -195,7 +195,6 @@ public class EmbeddingNodes {
.call()
.content();
Assert.notBlank(response, "LLM response is empty");
logger.info("{}", response);
// noinspection DataFlowIssue
return Arrays.stream(StrUtil.trim(response).split("---"))
.map(text -> text.replaceAll("(?!^.+) +$", ""))