502399493zjw-lgtm/dsh-model-retry ↗★ 0
@zhongjingwei/dsh-model-retry
用于在 DSH Web 设置中配置活动服务商模型请求重试额度的插件。
AI 分析
核心用途是允许用户在设置中自定义模型请求的重试策略。适合需要提高 API 请求稳定性、减少偶发报错中断任务的用户,兼容 DSH 0.1.0-rc.8。
安装
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:502399493zjw-lgtm/dsh-model-retry说明文档
阅读完整 README ↗@zhongjingwei/dsh-model-retry
English | 中文
DeepSeek Harness Web plugin for configuring active providers' model-request retry budget from Settings → General.
Compatibility: pinned to stock DSH
0.1.0-rc.8. rc.8 moved retry ownership into provider profiles, so this version writes each active normal provider'sretryPolicy.maxRetriesthrough the published settings API.
Demo

The demo uses stock DSH 0.1.0-rc.8 and a plugin tarball packed from this source, all under an isolated DSH_HOME. It changes the retry budget from 2 to 5, then uses DSH's deterministic local LLM mock to return retryable server errors on attempts 1–5 and succeed on attempt 6. Session-title generation is disabled so those six mock requests belong only to the demonstrated model request. DSH executes and reports the retries; the plugin owns the shared retry-budget setting.
Install
For stock rc.8:
dsh plugin --profile web add @zhongjingwei/dsh-model-retry@0.1.0-rc.9
Restart Web after installation. Remove the plugin with:
dsh plugin --profile web remove @zhongjingwei/dsh-model-retry
Behavior
- Adds one numeric retry-count row to Settings → General and shows its provider scope.
- Accepts finite, non-negative integers, including
0. - Discovers active configurable providers through
llm.providersand uses revision-fencedsettings.mutatecalls. - Writes
retryPolicy.maxRetriesfor normal/default policies while preserving existing backoff and retryable-code fields. - Leaves
alwayspolicies unlimited and leaves retry execution/backoff behavior owned by DSH.
Development
pnpm install
pnpm test
pnpm run build
pnpm run verify:package
pnpm pack
The package is an external Cordis plugin and does not patch DSH core.
License
MIT