11 lines
464 B
JavaScript
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],
|
|
});
|