diff --git a/packages/services/conversation-service/src/infrastructure/agents/specialists/policy-expert.service.ts b/packages/services/conversation-service/src/infrastructure/agents/specialists/policy-expert.service.ts index 2ce0b17..16a628b 100644 --- a/packages/services/conversation-service/src/infrastructure/agents/specialists/policy-expert.service.ts +++ b/packages/services/conversation-service/src/infrastructure/agents/specialists/policy-expert.service.ts @@ -60,7 +60,7 @@ export class PolicyExpertService extends BaseSpecialistService { }); if (!ragResult || !ragResult.content) { - return '[KB_EMPTY] 知识库未找到相关内容。如需回答,必须在回复中明确标注"基于AI内置知识,请以入境处官方信息为准"。'; + return '[KB_EMPTY] 知识库未找到相关内容。如需回答,必须在回复中明确标注"基于AI训练数据,可能不是最新信息"。'; } const hasConfident = ragResult.sources?.some( @@ -68,13 +68,13 @@ export class PolicyExpertService extends BaseSpecialistService { ); if (!hasConfident) { - return `[KB_LOW_CONFIDENCE] 知识库找到以下内容但置信度较低,引用时请标注"仅供参考,请以官方信息为准":\n\n${ragResult.content}`; + return `[KB_LOW_CONFIDENCE] 知识库找到以下内容但置信度较低,引用时请标注"仅供参考,可能不是最新信息":\n\n${ragResult.content}`; } return ragResult.content; } catch (error) { this.logger.error(`Knowledge search failed: ${error}`); - return '[KB_ERROR] 知识库搜索暂时不可用。如需回答,必须在回复中明确标注"基于AI内置知识,请以入境处官方信息为准"。'; + return '[KB_ERROR] 知识库搜索暂时不可用。如需回答,必须在回复中明确标注"基于AI训练数据,可能不是最新信息"。'; } } return `Unknown tool: ${toolName}`; diff --git a/packages/services/conversation-service/src/infrastructure/claude/tools/immigration-tools.service.ts b/packages/services/conversation-service/src/infrastructure/claude/tools/immigration-tools.service.ts index 1d18157..2a71a58 100644 --- a/packages/services/conversation-service/src/infrastructure/claude/tools/immigration-tools.service.ts +++ b/packages/services/conversation-service/src/infrastructure/claude/tools/immigration-tools.service.ts @@ -372,7 +372,7 @@ export class ImmigrationToolsService { success: false, content: null, sourceType: 'BUILT_IN_KNOWLEDGE', - message: '[来源: AI内置知识] 知识库和网络搜索均未找到相关信息。如需回答,请务必在回复中明确告知用户:此信息基于AI训练数据,可能不是最新信息,仅供参考,建议向香港入境事务处官网(immd.gov.hk)核实最新政策。', + message: '[来源: AI内置知识] 知识库和网络搜索均未找到相关信息。如需回答,请务必在回复中明确告知用户:此信息基于AI训练数据,可能不是最新信息,仅供参考。', }; }