dsh-model-router 0.6.0 → 0.6.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.
Files changed (2) hide show
  1. package/cordis.patch.yml +23 -22
  2. package/package.json +1 -1
package/cordis.patch.yml CHANGED
@@ -37,25 +37,26 @@
37
37
  skill: true
38
38
  # Vision support: the catalog must list the vision model with image input, and
39
39
  # image admission limits are raised so normal screenshots (~8K, 15MB) attach.
40
- - patch:
41
- - id: llm-deepseek
42
- config:
43
- models:
44
- - id: deepseek-v4-flash
45
- name: DeepSeek-V4-Flash
46
- contextWindow: 1000000
47
- maxTokens: 256000
48
- - id: deepseek-v4-pro
49
- name: DeepSeek-V4-Pro
50
- contextWindow: 1000000
51
- maxTokens: 256000
52
- - id: deepseek-v4-flash-vision-exp
53
- name: DeepSeek-V4-Flash-Vision-Exp
54
- contextWindow: 1000000
55
- maxTokens: 256000
56
- inputModalities: [text, image]
57
- - id: attachment-local
58
- config:
59
- maxImageDimension: 8192
60
- maxImagePixels: 100000000
61
- maxImageBytes: 15728640
40
+ # Direct id-targeted entries (same shape as a profile cordis.patch.yml): they
41
+ # replace the targeted row's whole config.
42
+ - id: llm-deepseek
43
+ config:
44
+ models:
45
+ - id: deepseek-v4-flash
46
+ name: DeepSeek-V4-Flash
47
+ contextWindow: 1000000
48
+ maxTokens: 256000
49
+ - id: deepseek-v4-pro
50
+ name: DeepSeek-V4-Pro
51
+ contextWindow: 1000000
52
+ maxTokens: 256000
53
+ - id: deepseek-v4-flash-vision-exp
54
+ name: DeepSeek-V4-Flash-Vision-Exp
55
+ contextWindow: 1000000
56
+ maxTokens: 256000
57
+ inputModalities: [text, image]
58
+ - id: attachment-local
59
+ config:
60
+ maxImageDimension: 8192
61
+ maxImagePixels: 100000000
62
+ maxImageBytes: 15728640
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dsh-model-router",
3
3
  "description": "DeepSeek Harness plugin: role-based model routing — the planner agent runs on deepseek-v4-pro, delegated executor subagents run on deepseek-v4-flash.",
4
- "version": "0.6.0",
4
+ "version": "0.6.1",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },