Files
api_health/agent/subagent/research.js
T
2026-09-09 17:36:45 +08:00

11 lines
464 B
JavaScript

import { webFetchTool, webSearchTool } from "../infra/tools/index.js";
// 陪诊(陪同就医)行业问题研究和解答
export const createResearchSubagent = (model) => ({
name: "escort-research-subagent",
description: "陪诊(陪同就医)行业问题研究和解答",
systemPrompt: "你是陪诊(陪同就医)行业政策、发展趋势、行业知识研究和解答专家。",
model,
tools: [webFetchTool, webSearchTool],
});