alexpadholol/dsh-plugin-fusion0

dsh-plugin-fusion

Fusion mode generation tool for the DeepSeek Harness: sample the model N times with different temperatures, then let the model itself pick the most suitable answer.

AI 分析

核心用途是通过多次采样与自我筛选提升回答质量。适合对生成结果准确性、创意性要求较高,且不介意消耗更多 Token 的复杂推理或写作任务。

パッケージ
dsh-plugin-fusion
バージョン
0.1.0
ライセンス
MIT
最終更新
2026/08/23

インストール

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:alexpadholol/dsh-plugin-fusion

ドキュメント

README 全文を読む ↗

Usage

Ask your agent to use fusion_generate, or call it directly with:

ParameterTypeDescription
promptstring (required)The request to send to the model.
systemstringOptional system prompt for every call.
countnumberNumber of independent calls (default 5, clamped 1–10).
providerstringProvider route override; defaults to the current default model.
modelstringModel id override; defaults to the current default model.

Example result

{
  "provider": "deepseek-official",
  "model": "deepseek-v4-flash",
  "count": 5,
  "answers": ["...", "...", "...", "...", "..."],
  "chosenIndex": 2,
  "chosenAnswer": "...",
  "reason": "表述最完整准确,兼顾输入特征、融合过程与生成目标,且保持了简洁性。"
}