@ljwei-stak/model-router-galgame 0.4.15 → 0.4.16
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/.dsh-plugin/client.js +1 -1
- package/README.md +4 -3
- package/README.zh.md +5 -4
- package/package.json +1 -1
package/.dsh-plugin/client.js
CHANGED
|
@@ -61740,7 +61740,7 @@ var gal_scene_default = { version: 1, settings: { stageW: 1920, stageH: 1080, sh
|
|
|
61740
61740
|
var name = "gal-view";
|
|
61741
61741
|
var PROJECT_URL = "https://github.com/ljwei-stak/deepseek-harness";
|
|
61742
61742
|
var RELEASES_URL = `${PROJECT_URL}/releases`;
|
|
61743
|
-
var PLUGIN_VERSION = "0.4.
|
|
61743
|
+
var PLUGIN_VERSION = "0.4.16";
|
|
61744
61744
|
function createUpdateApi() {
|
|
61745
61745
|
const bridge = globalThis.deepSeekHarnessDesktop;
|
|
61746
61746
|
const openExternal = (url) => {
|
package/README.md
CHANGED
|
@@ -100,7 +100,7 @@ pnpm dsh plugin --profile web remove @liustack/modlens
|
|
|
100
100
|
pnpm dsh plugin --profile web add "@ljwei-stak/model-router-galgame@$routerVersion"
|
|
101
101
|
```
|
|
102
102
|
|
|
103
|
-
Do not add
|
|
103
|
+
Do not add `@ljwei-stak/dsh-approval-gate` separately to the same profile. If it was previously installed as a standalone entry, remove it before reinstalling the router to avoid a duplicate loader:
|
|
104
104
|
|
|
105
105
|
```powershell
|
|
106
106
|
pnpm dsh plugin --profile web remove @ljwei-stak/dsh-approval-gate
|
|
@@ -164,10 +164,10 @@ pnpm dsh plugin --profile web add "@ljwei-stak/model-router-galgame@$routerVersi
|
|
|
164
164
|
```
|
|
165
165
|
|
|
166
166
|
For a reproducible deployment, replace `$routerVersion` with a concrete version
|
|
167
|
-
that you have verified with `npm view` (for example `0.4.
|
|
167
|
+
that you have verified with `npm view` (for example `0.4.16`):
|
|
168
168
|
|
|
169
169
|
```powershell
|
|
170
|
-
pnpm dsh plugin --profile web add @ljwei-stak/model-router-galgame@0.4.
|
|
170
|
+
pnpm dsh plugin --profile web add @ljwei-stak/model-router-galgame@0.4.16
|
|
171
171
|
```
|
|
172
172
|
|
|
173
173
|
You can also ask pnpm to update an already-installed package within its declared
|
|
@@ -570,3 +570,4 @@ The GAL interaction is inspired by [`Ayase34/gal-view`](https://github.com/Ayase
|
|
|
570
570
|
The root `desktop/` directory provides server/local mode selection and Windows packaging. The desktop window, launcher, and Windows installer use the square icon derived from `DeepSeek_Harness娘.avif`. Source, settings schema, and reproducible build scripts remain in the repository; installers are published through the project Releases.
|
|
571
571
|
|
|
572
572
|
|
|
573
|
+
|
package/README.zh.md
CHANGED
|
@@ -107,7 +107,7 @@ pnpm dsh plugin --profile web remove dsh-ego-browser
|
|
|
107
107
|
pnpm dsh plugin --profile web add "@ljwei-stak/model-router-galgame@$routerVersion"
|
|
108
108
|
```
|
|
109
109
|
|
|
110
|
-
同理,不要在同一个 profile 中再次单独添加
|
|
110
|
+
同理,不要在同一个 profile 中再次单独添加 `@ljwei-stak/dsh-approval-gate`。如果以前单独安装过,
|
|
111
111
|
先删除旧条目再安装本插件,避免重复 loader:
|
|
112
112
|
|
|
113
113
|
```powershell
|
|
@@ -151,10 +151,10 @@ pnpm dsh plugin --profile web add "@ljwei-stak/model-router-galgame@$routerVersi
|
|
|
151
151
|
```
|
|
152
152
|
|
|
153
153
|
如果需要可复现部署,请把 `$routerVersion` 替换为通过 `npm view` 确认过的具体版本号
|
|
154
|
-
(例如 `0.4.
|
|
154
|
+
(例如 `0.4.16`):
|
|
155
155
|
|
|
156
156
|
```powershell
|
|
157
|
-
pnpm dsh plugin --profile web add @ljwei-stak/model-router-galgame@0.4.
|
|
157
|
+
pnpm dsh plugin --profile web add @ljwei-stak/model-router-galgame@0.4.16
|
|
158
158
|
```
|
|
159
159
|
|
|
160
160
|
已经安装过插件时,也可以让 pnpm 在当前版本范围内更新:
|
|
@@ -251,7 +251,7 @@ Harness 原生审批界面处理。路由器不会改变审批结论,只会在
|
|
|
251
251
|
|
|
252
252
|
## 数学路由模型
|
|
253
253
|
|
|
254
|
-
本节按照 `RESEARCH_PAPER_FRAMEWORK.md` 的论文框架,完整说明当前 `0.4.
|
|
254
|
+
本节按照 `RESEARCH_PAPER_FRAMEWORK.md` 的论文框架,完整说明当前 `0.4.16`
|
|
255
255
|
实现。生产路由器与离线实验插件共用质量下限、费用模型、目标函数和回退语义;
|
|
256
256
|
生产实现进一步加入 Pareto 剪枝与有界全局搜索,因此不再是互相独立的逐阶段局部贪心。
|
|
257
257
|
|
|
@@ -526,3 +526,4 @@ GAL 交互方式参考 [`Ayase34/gal-view`](https://github.com/Ayase34/gal-view)
|
|
|
526
526
|
仓库根目录 `desktop/` 提供服务器端/本地运行模式切换和 Windows 打包配置。桌面窗口、启动器与 Windows 安装包使用 `DeepSeek_Harness娘.avif` 生成的方形图标。插件源码、设置 schema 和构建脚本均保留在仓库,安装包通过项目 Release 发布。
|
|
527
527
|
|
|
528
528
|
|
|
529
|
+
|