dsh-model-accordion 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -74,7 +74,7 @@ The selector submits the exact provider, model, and reasoning effort returned by
74
74
  - A picked reasoning effort that the model does not support is silently dropped so the request falls back to the model's default (no `UNSUPPORTED_REASONING_EFFORT` error). A relay/gateway model configured without an effort level keeps the model but does not force an unsupported level.
75
75
  - A selection can still be rejected by the DSH host when the session contains images and the selected model does not declare image input. That is a host/model-capability rule, not a UI override.
76
76
  - The model search box filters provider lists by name, id, or description while keeping the accordion grouping; a provider group auto-expands while a query is active.
77
- - The built-in official-effort table keys on the model's name/id and is cross-checked against the installed pi-ai catalog and each vendor's API docs. It covers only models whose vendors expose a real effort ladder: GPT-5.6 (full ladder incl. `max`), gpt-5.2+ (`xhigh`), gpt-5.1, gpt-5/mini/nano, o1/o3/o4, gpt-oss, Grok 4.x, GLM-5.3 (`low/high/max`) and GLM-5.2+ (`xhigh/max`), DeepSeek-V4 (`low/high/max`), Kimi K3, Qwen3.8, Gemini 3+ (`low/high`), Claude 4.6+ adaptive, Gemma 4. Families whose native control is not an effort ladder (Gemini 2.5 / Claude ≤4.5 token budgets, GLM ≤5.1 / Kimi K2 / MiniMax / Mistral thinking switches, Qwen open-source, DeepSeek ≤V3) are deliberately excluded. Unmatched models offer only the efforts their configured catalog declares — see "Customizing reasoning effort for a model" to add your own.
77
+ - The built-in official-effort table keys on the model's name/id and is cross-checked against the installed pi-ai catalog and each vendor's API docs. It covers only models whose vendors expose a real effort ladder: GPT-5.6 (full ladder incl. `max`), gpt-5.2+ (`xhigh`), gpt-5.1, gpt-5/mini/nano, o1/o3/o4, gpt-oss, Grok 4.x, GLM-5.3 (`low/high/max`) and GLM-5.2+ (`xhigh/max`), DeepSeek-V4 (`low/high/max`), DeepSeek-V4.1-Flash (`deepseek-flash` / `deepseek-v4.1-*`, `low/high/max`), Kimi K3, Qwen3.8, Gemini 3+ (`low/high`), Claude 4.6+ adaptive, Gemma 4. Families whose native control is not an effort ladder (Gemini 2.5 / Claude ≤4.5 token budgets, GLM ≤5.1 / Kimi K2 / MiniMax / Mistral thinking switches, Qwen open-source, DeepSeek ≤V3) are deliberately excluded. Unmatched models offer only the efforts their configured catalog declares — see "Customizing reasoning effort for a model" to add your own.
78
78
  - The plugin uses English status and search text; full locale integration is planned for a later release.
79
79
 
80
80
  ## Development checks
package/lib/client.js CHANGED
@@ -98,6 +98,7 @@ window.__ModuleLoader__.load({
98
98
  // glm-5.3 / 5.3-FLASH: low/high/max (thinking un-offable)(default max)
99
99
  // glm-5.2+: low/medium/high/xhigh/max (default max)
100
100
  // deepseek-v4: low/high/max (default high)
101
+ // deepseek-v4.1-flash / deepseek-flash: low/high/max (default high)
101
102
  // kimi-k3: low/high/max (default max)
102
103
  // qwen3.8: xhigh/medium/low (default xhigh)
103
104
  // gemini-3+ (Pro/Flash): low/high (always on) (default high)
@@ -114,6 +115,7 @@ window.__ModuleLoader__.load({
114
115
  { test: /glm-5\.3/i, efforts: ["low", "high", "max"], def: "max" },
115
116
  { test: /glm-5(?:\.[2-9]|\.\d+)/i, efforts: ["low", "medium", "high", "xhigh", "max"], def: "max" },
116
117
  { test: /deepseek-v4/i, efforts: ["low", "high", "max"], def: "high" },
118
+ { test: /deepseek-(?:v4\.1|flash)/i, efforts: ["low", "high", "max"], def: "high" },
117
119
  { test: /kimi-k3/i, efforts: ["low", "high", "max"], def: "max" },
118
120
  { test: /qwen3\.8/i, efforts: ["xhigh", "medium", "low"], def: "xhigh" },
119
121
  { test: /gemini-3/i, efforts: ["low", "high"], def: "high" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-model-accordion",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Provider-folded model selector for the DSH Web composer with catalog-driven reasoning effort choices.",
5
5
  "keywords": [
6
6
  "deepseek-harness",