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.

AI 分析

核心用途是通过 Mixture of Agents 架构提升复杂任务的回答质量,作为按需调用的工具运行。适合需要对比多模型输出并进行高质量文本合成的复杂推理任务。

パッケージ
dsh-moa
バージョン
1.0.0
最終更新
2026/08/16

インストール

$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.