alexpadholol/dsh-plugin-fusion ↗★ 0
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.
安装
$
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:
| Parameter | Type | Description |
|---|---|---|
prompt | string (required) | The request to send to the model. |
system | string | Optional system prompt for every call. |
count | number | Number of independent calls (default 5, clamped 1–10). |
provider | string | Provider route override; defaults to the current default model. |
model | string | Model id override; defaults to the current default model. |
Example result
{
"provider": "deepseek-official",
"model": "deepseek-v4-flash",
"count": 5,
"answers": ["...", "...", "...", "...", "..."],
"chosenIndex": 2,
"chosenAnswer": "...",
"reason": "表述最完整准确,兼顾输入特征、融合过程与生成目标,且保持了简洁性。"
}