icekale/dsh-provider-auto ↗★ 0
dsh-provider-auto
Automatically add reasoning-level controls to compatible DSH provider models.
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:icekale/dsh-provider-auto说明文档
阅读完整 README ↗Provider configuration
Add providers from the DSH Models page, or edit ~/.dsh/settings.yaml:
llm-pi-ai:
providers:
one2api:
baseURL: https://one2api.top/v1
api: openai-completions
apiKeyEnv: ONE2API_API_KEY
models:
- id: gpt-5.6-sol
name: gpt-5.6-sol
- id: gpt-image-2
name: gpt-image-2
The plugin adds this only to gpt-5.6-sol:
reasoningEfforts:
off: null
low: low
medium: medium
high: high
Plugin configuration
Override the plugin row in ~/.dsh/profiles/web/cordis.patch.yml when a gateway uses different model names or wire values:
- id: provider-auto
config:
api:
- openai-completions
- openai-responses
modelPattern: '^(gpt-5|o[0-9]|codex|my-reasoner)'
nonTextPattern: '(image|audio|embedding|rerank)'
efforts:
off: null
low: low
medium: medium
high: high
A provider that uses different wire values can map them explicitly:
- id: provider-auto
config:
efforts:
off: null
low: lite
medium: standard
high: max