dsh-moa
Mixture of Agents (MoA) tool plugin for DeepSeek Harness — run several models in parallel on the same prompt, then have a stronger aggregator model synthesize a final answer. On-demand tool, zero cost when unused.
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:morphlinglan/dsh-moa说明文档
阅读完整 README ↗Usage
Configure the proposer pool and aggregator in your profile's cordis.patch.yml:
- insert:
- id: dsh-moa
name: dsh-moa
config:
toolName: run_moa
# Replace with your own providers/models.
proposers:
- provider: proposer-provider-a
model: proposer-model-a
- provider: proposer-provider-b
model: proposer-model-b
aggregator:
provider: aggregator-provider
model: aggregator-model
minProposers: 2
proposerMaxTokens: 1500
aggregatorMaxTokens: 2500
fallbackLongest: true
maxRetries: 2
The providers/models above are placeholders only. Replace them with providers and models you actually have access to.
Then ask the agent to use run_moa for complex analysis, synthesis, translation, or review tasks.