From 7493b63a5fc2a3f1cd244ab4237ffe2204d91c77 Mon Sep 17 00:00:00 2001 From: JEECG <445654970@qq.com> Date: Mon, 26 Jan 2026 15:18:13 +0800 Subject: [PATCH] =?UTF-8?q?--author:scott--date:20261026--for:=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E6=8F=92=E4=BB=B6=E5=B7=A5=E5=85=B7=E5=BC=82=E5=B8=B8?= =?UTF-8?q?=EF=BC=8C=E6=8A=A5=E9=94=99=E4=B8=8D=E5=BD=B1=E5=93=8DAI?= =?UTF-8?q?=E5=90=8E=E7=BB=AD=E6=89=A7=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/airag/llm/handler/PluginToolBuilder.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/jeecg-boot/jeecg-boot-module/jeecg-boot-module-airag/src/main/java/org/jeecg/modules/airag/llm/handler/PluginToolBuilder.java b/jeecg-boot/jeecg-boot-module/jeecg-boot-module-airag/src/main/java/org/jeecg/modules/airag/llm/handler/PluginToolBuilder.java index d155f7622..106e7857e 100644 --- a/jeecg-boot/jeecg-boot-module/jeecg-boot-module-airag/src/main/java/org/jeecg/modules/airag/llm/handler/PluginToolBuilder.java +++ b/jeecg-boot/jeecg-boot-module/jeecg-boot-module-airag/src/main/java/org/jeecg/modules/airag/llm/handler/PluginToolBuilder.java @@ -233,10 +233,16 @@ public class PluginToolBuilder { return response.getBody() != null ? response.getBody() : ""; } catch (HttpClientErrorException e) { log.error("插件工具HTTP请求失败: {}", e.getMessage(), e); - return "请求失败: " + e.getStatusCode() + " - " + e.getResponseBodyAsString(); + //update-begin---author:wangshuai---date:2026-01-16---for:【QQYUN-14577】图片搜索失败会导致进行不下去--- + return "插件调用失败(HTTP " + e.getStatusCode() + "):" + e.getResponseBodyAsString() + + "。请继续完成剩余任务。"; + //update-end---author:wangshuai---date:2026-01-16---for:【QQYUN-14577】图片搜索失败会导致进行不下去--- } catch (Exception e) { log.error("插件工具执行失败: {}", e.getMessage(), e); - return "工具执行失败: " + e.getMessage(); + //update-begin---author:wangshuai---date:2026-01-16---for:【QQYUN-14577】图片搜索失败会导致进行不下去--- + return "插件工具执行失败:" + e.getMessage() + + "。请继续完成剩余任务。"; + //update-end---author:wangshuai---date:2026-01-16---for:【QQYUN-14577】图片搜索失败会导致进行不下去--- } }; }