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.

包名
dsh-plugin-fusion
版本
0.1.0
许可证
MIT
最近更新
2026年8月23日

安装

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

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": "表述最完整准确,兼顾输入特征、融合过程与生成目标,且保持了简洁性。"
}