morphlinglan/dsh-moa0

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.

包名
dsh-moa
版本
1.0.0
最近更新
2026年8月16日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:morphlinglan/dsh-moa

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.