This commit is contained in:
lik
2026-09-09 17:36:45 +08:00
parent d6efb180dd
commit 223e0ed2ee
25 changed files with 933 additions and 59 deletions
+10
View File
@@ -0,0 +1,10 @@
import { webFetchTool, webSearchTool } from "../infra/tools/index.js";
// 陪诊(陪同就医)行业问题研究和解答
export const createResearchSubagent = (model) => ({
name: "escort-research-subagent",
description: "陪诊(陪同就医)行业问题研究和解答",
systemPrompt: "你是陪诊(陪同就医)行业政策、发展趋势、行业知识研究和解答专家。",
model,
tools: [webFetchTool, webSearchTool],
});