43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
name: "team-research-report"
|
||
agents_dir: "/home/muc/.npm/_npx/097cc02411e2da65/node_modules/agency-orchestrator/agency-agents"
|
||
|
||
llm:
|
||
provider: "custom"
|
||
base_url: "http://127.0.0.1:3000/v1"
|
||
api_key: "0ExNiLblJvIWBDpkS50fwOBw4MmqLyKdHJK5iQtlw9dOMWBP"
|
||
model: "mistralai/mistral-large-3-675b-instruct-2512"
|
||
max_tokens: 8192
|
||
|
||
concurrency: 3
|
||
|
||
inputs:
|
||
- name: topic
|
||
required: true
|
||
|
||
steps:
|
||
- id: researcher
|
||
role: "product/product-trend-researcher"
|
||
task: |-
|
||
研究主题: {{topic}}
|
||
任务: 收集并整理该主题的最新市场动态、核心信息、关键人物/产品。
|
||
输出: 300字内的结构化笔记。
|
||
output: research_notes
|
||
|
||
- id: analyst
|
||
role: "support/support-analytics-reporter"
|
||
task: |-
|
||
分析以下研究笔记,提炼出3个关键洞察、2个风险、1个建议行动。
|
||
研究笔记: {{research_notes}}
|
||
输出: 精简版分析报告。
|
||
depends_on: [researcher]
|
||
output: analysis
|
||
|
||
- id: writer
|
||
role: "support/support-executive-summary-generator"
|
||
task: |-
|
||
基于以下分析,写一份300字的总结摘要,面向非技术读者。
|
||
分析: {{analysis}}
|
||
输出: 摘要。
|
||
depends_on: [researcher, analyst]
|
||
output: summary
|