dsh-modellix 0.1.0 → 0.2.0
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/CHANGELOG.md +56 -0
- package/README.md +101 -169
- package/README.zh-CN.md +99 -167
- package/docs/assets/chat-media-generation-en.webp +0 -0
- package/docs/assets/chat-media-generation-zh.webp +0 -0
- package/docs/assets/design-results-drawer-en.webp +0 -0
- package/docs/assets/design-results-drawer-zh.webp +0 -0
- package/docs/assets/llm-model-selector-en.webp +0 -0
- package/docs/assets/llm-model-selector-zh.webp +0 -0
- package/docs/assets/media-players-en.webp +0 -0
- package/docs/assets/media-players-zh.webp +0 -0
- package/docs/assets/settings-ready-en.webp +0 -0
- package/docs/assets/settings-ready-zh.webp +0 -0
- package/docs/assets/web-tools-auto-en.webp +0 -0
- package/docs/assets/web-tools-auto-zh.webp +0 -0
- package/docs/en-US/LOCAL_USAGE.md +17 -15
- package/docs/en-US/RELEASE_CHECKLIST.md +270 -0
- package/docs/en-US/USER_GUIDE.md +183 -401
- package/docs/zh-CN/LOCAL_USAGE.md +17 -15
- package/docs/zh-CN/RELEASE_CHECKLIST.md +270 -0
- package/docs/zh-CN/USER_GUIDE.md +182 -400
- package/lib/client.d.ts +16 -2
- package/lib/client.js +1308 -466
- package/lib/client.js.map +1 -1
- package/lib/index.d.ts +159 -109
- package/lib/index.js +995 -192
- package/lib/index.js.map +1 -1
- package/package.json +7 -2
- package/docs/assets/credential-recovery.webp +0 -0
- package/docs/assets/design-desktop.webp +0 -0
- package/docs/assets/design-mobile-en.webp +0 -0
- package/docs/assets/design-proposal.webp +0 -0
- package/docs/assets/design-results-media.webp +0 -0
- package/docs/assets/llm-model-selector.webp +0 -0
- package/docs/assets/onboarding-defaults.webp +0 -0
- package/docs/assets/settings-ready.webp +0 -0
- package/docs/assets/web-tools.webp +0 -0
package/README.zh-CN.md
CHANGED
|
@@ -2,35 +2,43 @@
|
|
|
2
2
|
|
|
3
3
|
# dsh-modellix
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
`dsh-modellix` 将 Modellix 媒体生成、LLM 模型和 Web 研究能力接入 [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness)。配置一个 Modellix API Key 后,即可通过 Chat-first 流程自然表达需求,让图片、视频、音频及其上下文留在同一会话中。
|
|
6
6
|
|
|
7
7
|
> Harness 与本插件当前都使用预发布接口。升级 Harness 前,请核对本包的 peer dependencies 和 [CHANGELOG](CHANGELOG.md)。
|
|
8
8
|
|
|
9
|
-

|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## 0.2.0 的主要变化
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
- 删除独立 Design Tab,对话成为媒体创作主界面。
|
|
14
|
+
- 新增 6 个明确的媒体 Agent 工具,覆盖模型目录、Schema、参数准备、文件上传、生成和结果查询。
|
|
15
|
+
- 新增明确的 Modellix Web Search/Fetch 工具,使 Agent 在需要实时信息或来源核验时能够自动调用。
|
|
16
|
+
- 将 **Modellix Design** 放在会话右侧面板:桌面端内部宽度固定为 360px,窄屏使用全宽;开合过程中内容不会被压缩变形。
|
|
17
|
+
- 新增对话内实时结果卡。提交卡会在后台任务结束后原位更新,一次结果查询不会再渲染第二张重复卡片。
|
|
18
|
+
- 新增会话隔离的结果历史、结果列表与单卡折叠、图片放大、视频/音频播放器、**添加 URL 到对话框** 和 **下载**。
|
|
19
|
+
- 高级精准参数编辑器代码继续保留,但本版本暂时隐藏入口,优先完成普通用户的无感对话体验。
|
|
20
|
+
- UI 不再显示常规付费提醒。配置 Modellix Key 已代表用户具备用量预期,消耗与明细可在 Modellix 查看。
|
|
21
|
+
|
|
22
|
+
## 功能能力
|
|
18
23
|
|
|
19
|
-
|
|
24
|
+
| 区域 | 用户体验 | 已注册能力 |
|
|
25
|
+
| --- | --- | --- |
|
|
26
|
+
| 媒体 | 直接让 Agent 创建、编辑、动画化或配音 | `modellix_media_list`、`modellix_media_schema`、`modellix_media_prepare`、`modellix_media_upload_file`、`modellix_media_generate`、`modellix_media_get_result` |
|
|
27
|
+
| 结果 | 在对话卡片或会话右侧面板中查看作品 | 实时状态收敛、成功任务 Preview/JSON、图片/视频/音频展示、URL 插入、下载 |
|
|
28
|
+
| LLM | 在 Harness 模型选择器中选择实时 Modellix 模型 | Modellix OpenAI 兼容 Provider、实时目录、Provider 重试次数为 `0` |
|
|
29
|
+
| Web | 正常提出实时、外部、URL 或来源核验问题 | Agent 自动选择 `modellix_web_search` 和 `modellix_web_fetch` |
|
|
20
30
|
|
|
21
31
|
## 环境要求
|
|
22
32
|
|
|
23
33
|
- DeepSeek Harness `0.1.1-rc.2`
|
|
24
34
|
- 已发布包运行时:Node.js `^22.19.0 || >=24.0.0`
|
|
25
|
-
- 源码开发与发布校验:Node.js `24.18.1`、pnpm `11.24.0
|
|
26
|
-
-
|
|
35
|
+
- 源码开发与发布校验:Node.js `24.18.1`、pnpm `11.24.0`
|
|
36
|
+
- 有效的 [Modellix API Key](https://docs.modellix.ai/get-started)
|
|
27
37
|
|
|
28
|
-
|
|
38
|
+
插件自带 Harness 集成,运行时不会安装或调用 `modellix-cli`。
|
|
29
39
|
|
|
30
40
|
## 安装
|
|
31
41
|
|
|
32
|
-
需要从当前源码在 Windows 本机完整安装和启动时,请直接阅读 [dsh-modellix 本地使用指南](docs/zh-CN/LOCAL_USAGE.md);同时提供[英文版本](docs/en-US/LOCAL_USAGE.md)。
|
|
33
|
-
|
|
34
42
|
将已发布包安装到目标 Web profile,检查合并后的配置,然后启动或重启该 profile:
|
|
35
43
|
|
|
36
44
|
```sh
|
|
@@ -39,226 +47,150 @@ dsh --profile web --dump-config
|
|
|
39
47
|
dsh --profile web
|
|
40
48
|
```
|
|
41
49
|
|
|
42
|
-
`--dump-config`
|
|
50
|
+
`--dump-config` 应包含 `dsh-modellix` Bundle 层和 id 为 `modellix` 的插件行。若使用其他 profile,请替换命令中的 `web`。
|
|
43
51
|
|
|
44
|
-
|
|
52
|
+
也可以安装可信源码构建出的 tarball:
|
|
45
53
|
|
|
46
54
|
```sh
|
|
47
55
|
pnpm install --frozen-lockfile
|
|
48
56
|
pnpm run verify:release:static
|
|
49
57
|
pnpm pack
|
|
50
|
-
dsh plugin --profile web add ./dsh-modellix-0.
|
|
58
|
+
dsh plugin --profile web add ./dsh-modellix-0.2.0.tgz
|
|
51
59
|
```
|
|
52
60
|
|
|
53
|
-
|
|
61
|
+
完整 Windows 本地流程见[本地使用指南](docs/zh-CN/LOCAL_USAGE.md)。
|
|
54
62
|
|
|
55
|
-
##
|
|
63
|
+
## 配置 API Key
|
|
56
64
|
|
|
57
|
-
|
|
58
|
-
2. 输入 API Key,并确认 Design、LLM、Web 三个默认开启的开关是否符合需要。
|
|
59
|
-
3. 选择“保存并启用”。保存成功后,浏览器不再回显 Key,只显示 Credential 状态和来源。
|
|
60
|
-
4. 暂时不配置时可选择“稍后处理”。这不会把插件标记为可用;下次显式使用已开启且需要凭据的 Modellix 能力时会再次提示。
|
|
65
|
+
首次使用时,在 **连接 Modellix** 中输入 Key,保留需要启用的服务,然后选择 **保存并启用**。已保存 Credential 是 write-only:Client 只会收到配置状态和来源,不会收到已存 Key。
|
|
61
66
|
|
|
62
|
-
|
|
67
|
+
也可以在 Harness 启动环境中提供 `MODELLIX_API_KEY`。环境来源 Credential 在 UI 中只读,更换后需要重启 Harness。
|
|
63
68
|
|
|
64
|
-
|
|
65
|
-
- 由 Harness 启动环境中的 `MODELLIX_API_KEY` 提供。环境来源在 UI 中只读;更新后必须重启 Harness。
|
|
69
|
+
不要把真实 Key 放入仓库、命令参数、URL、浏览器存储、日志、截图、HAR、录像或测试快照。
|
|
66
70
|
|
|
67
|
-
|
|
71
|
+
## Chat-first 媒体流程
|
|
68
72
|
|
|
69
|
-
|
|
73
|
+
用户只需描述目标,不必列出工具顺序。例如:
|
|
70
74
|
|
|
71
|
-
|
|
75
|
+
> 创建一张精致的 16:9 建筑首页图:玻璃植物研究馆漂浮在晨曦云海上,以优雅观景桥连接,青金蓝与暖金配色,真实高级材质,无人物、无文字、无水印。
|
|
72
76
|
|
|
73
|
-
|
|
77
|
+
Agent 会按实际情况:
|
|
74
78
|
|
|
75
|
-
1.
|
|
76
|
-
2.
|
|
77
|
-
3.
|
|
78
|
-
4.
|
|
79
|
-
5.
|
|
80
|
-
6.
|
|
81
|
-
7. 右侧结果区按“进行中 / 已完成 / 诊断”展示记录,支持图片放大、视频和音频播放以及安全下载。
|
|
79
|
+
1. 若尚未知道合适模型,先查询实时媒体模型目录。
|
|
80
|
+
2. 读取目标模型的实时 API Schema,只使用公开字段和允许值。
|
|
81
|
+
3. 对“继续修改、把上一张图做成视频、保持主体和构图”等请求,自动复用本会话最新相关结果 URL,选择图生图、图片编辑、图生视频或视频编辑模型,而不是退回文生图/文生视频。
|
|
82
|
+
4. 当 Schema 要求公开媒体 URL 时,上传本地文件或会话附件。
|
|
83
|
+
5. 生成请求只提交一次;未知提交结果不会自动重放。
|
|
84
|
+
6. Agent 回合内最多查询一次,之后由后台监听器持续更新现有卡片,不需要 Agent 再调用结果工具。
|
|
82
85
|
|
|
83
|
-
|
|
86
|
+
任务尚未结束时,不可变的助手正文只说明“提交已接受”,并引导查看实时结果卡和 Modellix Design;不会永久留下“生成中”这种过期状态。
|
|
84
87
|
|
|
85
|
-
|
|
88
|
+
### 结果行为
|
|
86
89
|
|
|
87
|
-
|
|
90
|
+
- **生成中与失败:** 只显示简洁的头部和状态;没有成功资源时不显示 Preview/JSON。
|
|
91
|
+
- **已完成:** 显示 Preview/JSON。图片可在带焦点管理的弹窗中放大,视频和音频使用原生播放器。
|
|
92
|
+
- **一个任务一张卡:** `generate` 卡持有任务展示权;同一任务的 `get_result` 调用不会重复渲染。
|
|
93
|
+
- **会话隔离:** 右侧面板只显示当前 Harness 会话所属任务;没有会话归属的旧记录不会注入新会话。
|
|
94
|
+
- **快捷操作:** **添加 URL 到对话框** 会把资源 URL 写入输入框;**下载** 安全打开上游资源。
|
|
95
|
+
- **有效期:** 优先使用上游有效期;若上游未返回,插件应用七天本地展示期限,但不会延长上游 URL,也不会永久保存媒体副本。
|
|
88
96
|
|
|
89
|
-
|
|
97
|
+

|
|
90
98
|
|
|
91
|
-
|
|
99
|
+

|
|
92
100
|
|
|
93
|
-
|
|
101
|
+
## Modellix Design 右侧面板
|
|
94
102
|
|
|
95
|
-
|
|
96
|
-
2. 在 Modellix 设置页查看目录状态、模型数和最近刷新时间;需要时手动刷新。
|
|
97
|
-
3. 在 Harness 模型选择器的 Modellix Provider 下选择目标模型。新选择从下一次模型调用开始生效。
|
|
103
|
+
**Modellix Design** 按钮位于会话头部最右侧,与 **Session log** 风格一致。大屏打开分屏侧面板,窄屏改为全宽覆盖。
|
|
98
104
|
|
|
99
|
-
|
|
105
|
+
- 整个结果列表默认展开,可点击收起。
|
|
106
|
+
- 每张结果卡默认展开,可点击卡片头部收起。
|
|
107
|
+
- 点击 X 关闭后,焦点会回到入口按钮。
|
|
108
|
+
- 高级精准参数编辑器已保留,但 `0.2.0` 暂不显示入口;普通用户通过 Chat 使用。
|
|
109
|
+
- 560px 及以下使用可用视口全宽;360px 及以下入口变为可触达的紧凑按钮。
|
|
100
110
|
|
|
101
|
-
|
|
111
|
+
## LLM 模型
|
|
102
112
|
|
|
103
|
-
|
|
113
|
+
开启 LLM 后,插件读取 Modellix 实时目录,并将模型加入 Harness 模型选择器。目录不可用时不会虚构回退列表。Modellix 设置页可查看目录健康、模型数量、刷新时间并手动刷新。
|
|
104
114
|
|
|
105
|
-
|
|
115
|
+

|
|
106
116
|
|
|
107
|
-
|
|
117
|
+
## 自动 Web Search 与 Fetch
|
|
108
118
|
|
|
109
|
-
|
|
110
|
-
- Design、LLM、Web 三个独立开关;
|
|
111
|
-
- LLM 目录健康状态、模型数、最近刷新时间和手动刷新。
|
|
119
|
+
用户不需要说出工具名。遇到实时、变化中、外部或需要来源核验的问题,Agent 会使用 `modellix_web_search`;用户提供公开 URL,或搜索结果需要阅读全文时,会使用 `modellix_web_fetch`。
|
|
112
120
|
|
|
113
|
-
|
|
121
|
+
明确的 Modellix 工具与 Harness 原生 Provider 共用底层服务,但路由规则会阻止同一操作同时调用两套工具。失败或结果未知的 Web 请求不会自动重复。
|
|
114
122
|
|
|
115
|
-
|
|
123
|
+

|
|
116
124
|
|
|
117
|
-
|
|
125
|
+
## 设置与恢复
|
|
118
126
|
|
|
119
|
-
|
|
127
|
+
Modellix 设置页包括:
|
|
120
128
|
|
|
121
|
-
-
|
|
122
|
-
-
|
|
123
|
-
-
|
|
124
|
-
-
|
|
125
|
-
- UI 文案跟随 Harness 当前语言;`README.md` 是默认英文入口,本文件提供完整中文版本。
|
|
129
|
+
- Credential 是否已配置、验证状态和来源;
|
|
130
|
+
- 本地可写 Credential 的更换与移除;
|
|
131
|
+
- Design、LLM、Web 独立开关;
|
|
132
|
+
- LLM 实时目录健康、数量、刷新时间和手动刷新。
|
|
126
133
|
|
|
127
|
-
|
|
134
|
+
只有 HTTP 401 会把 Credential 标记为无效。HTTP 402、429、网络错误和 5xx 使用各自恢复状态。并发 401 会合并为一个 Credential 弹窗。
|
|
128
135
|
|
|
129
|
-
|
|
136
|
+

|
|
130
137
|
|
|
131
|
-
|
|
132
|
-
dsh plugin --profile web remove dsh-modellix
|
|
133
|
-
dsh --profile web --dump-config
|
|
134
|
-
dsh --profile web
|
|
135
|
-
```
|
|
138
|
+
## 可访问性与响应式
|
|
136
139
|
|
|
137
|
-
|
|
140
|
+
- Dialog 显式管理初始焦点、Tab/Shift+Tab 循环、背景 inert、允许场景下的 Escape,以及关闭后的焦点恢复。
|
|
141
|
+
- 结果 Tab 支持标准键盘导航;任务与结果变化通过 polite live region 播报。
|
|
142
|
+
- 状态不只依赖颜色,同时提供文字。
|
|
143
|
+
- 已检查 320、560、768、1440 CSS px、200% 文本缩放、浅色/深色、forced-colors、粗指针和 reduced motion。
|
|
144
|
+
- 窄屏仍保留全部结果操作,不产生页面横向溢出。
|
|
138
145
|
|
|
139
|
-
##
|
|
146
|
+
## 文档
|
|
140
147
|
|
|
141
148
|
- [完整中文用户指南](docs/zh-CN/USER_GUIDE.md)
|
|
149
|
+
- [中文发布与验收清单](docs/zh-CN/RELEASE_CHECKLIST.md)
|
|
142
150
|
- [Complete English user guide](docs/en-US/USER_GUIDE.md)
|
|
143
|
-
- [English
|
|
144
|
-
|
|
145
|
-
当前仓库已收录 9 张经过安全检查的界面截图;不包含真实账户、Key、Network 请求详情、HAR 或 Credential 文件。中英文文档复用同一组图片。多数插件文案使用中文;`design-mobile-en.webp` 和 `llm-model-selector.webp` 使用英文 Harness 界面,`web-tools.webp` 则在英文 Harness 界面中展示中文公开文档请求与回答:
|
|
151
|
+
- [English release and acceptance checklist](docs/en-US/RELEASE_CHECKLIST.md)
|
|
152
|
+
- [本地源码使用](docs/zh-CN/LOCAL_USAGE.md)
|
|
146
153
|
|
|
147
|
-
|
|
148
|
-
| --- | --- |
|
|
149
|
-
| `docs/assets/onboarding-defaults.webp` | Modellix 首次配置弹窗,API Key 输入框为空,Design、LLM 和 Web 开关均开启 |
|
|
150
|
-
| `docs/assets/settings-ready.webp` | Modellix 设置页显示已验证 Credential、三个功能开关和 LLM 目录状态 |
|
|
151
|
-
| `docs/assets/design-desktop.webp` | Modellix Design 桌面布局,左侧为模型、提示词和参数,右侧为生成结果列表 |
|
|
152
|
-
| `docs/assets/design-proposal.webp` | Design 参数提议卡显示待确认的前后差异和应用、拒绝操作 |
|
|
153
|
-
| `docs/assets/design-results-media.webp` | Design 结果区显示真实验收生成的图片结果、有效期和下载入口 |
|
|
154
|
-
| `docs/assets/design-mobile-en.webp` | 英文 Modellix Design 在 320 像素宽度下使用单列布局,操作区位于结果区上方 |
|
|
155
|
-
| `docs/assets/credential-recovery.webp` | API Key 无效后的 Modellix 恢复弹窗,输入框为空并提供稍后处理 |
|
|
156
|
-
| `docs/assets/llm-model-selector.webp` | 英文 Harness 模型选择器展开 Modellix Provider,并列出从实时目录同步的多个 LLM 模型 |
|
|
157
|
-
| `docs/assets/web-tools.webp` | 英文 Harness 对话中,Modellix Provider 为中文公开文档请求完成原生 web_search 与 web_fetch |
|
|
154
|
+
仓库包含 6 张英文和 6 张中文 1920×1080 截图,分别来自真实语言会话,覆盖设置、对话生图、结果抽屉、媒体播放器、实时 LLM 模型和自动 Search/Fetch。所有截图均不包含 Key、请求头、Network/HAR、Credential 文件或浏览器存储。
|
|
158
155
|
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
## 当前限制
|
|
162
|
-
|
|
163
|
-
- Design 参数提议是受当前 Schema 约束的参数助手,不是开放式 Agent。
|
|
164
|
-
- 当前没有上游取消调用,UI 不提供任务取消按钮。
|
|
165
|
-
- 结果区持久化任务元数据和上游资源 URL,不持久化 API Key、prompt 或媒体副本。
|
|
166
|
-
- 复杂或包含阻断性未支持约束的 Schema 会禁用提交,不会猜测参数含义。
|
|
167
|
-
- LLM 只物化实时目录公开的模型;目录不可用时不会提供虚构回退模型。
|
|
168
|
-
|
|
169
|
-
## 开发与校验
|
|
156
|
+
## 开发与发布校验
|
|
170
157
|
|
|
171
158
|
```sh
|
|
172
159
|
pnpm install --frozen-lockfile
|
|
173
|
-
pnpm run
|
|
174
|
-
pnpm run typecheck
|
|
175
|
-
pnpm run lint
|
|
176
|
-
pnpm run test
|
|
177
|
-
pnpm run build
|
|
160
|
+
pnpm run check
|
|
178
161
|
pnpm run verify:pack
|
|
179
162
|
pnpm run verify:fresh-install
|
|
180
163
|
pnpm run verify:node22-install
|
|
181
164
|
pnpm run verify:release:static
|
|
182
165
|
```
|
|
183
166
|
|
|
184
|
-
`pnpm run
|
|
185
|
-
|
|
186
|
-
### 完整发布 Evidence 门禁
|
|
187
|
-
|
|
188
|
-
真正发布使用 `pnpm run verify:release`。先把最终代码、文档和截图提交到 Git,并保持工作区 clean;然后在仓库外分别创建两份小于 32 KiB、无 Secret、绑定当前 40 位 HEAD 和当前包版本的 JSON。`completedAt` 必须是规范 UTC ISO-8601,且不得早于执行时间 72 小时。浏览器 evidence 必须包含以下全部检查:
|
|
189
|
-
|
|
190
|
-
```json
|
|
191
|
-
{
|
|
192
|
-
"version": 1,
|
|
193
|
-
"kind": "browser",
|
|
194
|
-
"status": "passed",
|
|
195
|
-
"package": { "name": "dsh-modellix", "version": "0.1.0" },
|
|
196
|
-
"commit": "<current-40-character-lowercase-git-head>",
|
|
197
|
-
"completedAt": "<canonical-utc-iso-8601>",
|
|
198
|
-
"checks": {
|
|
199
|
-
"onboarding": "passed",
|
|
200
|
-
"settings": "passed",
|
|
201
|
-
"design": "passed",
|
|
202
|
-
"llm": "passed",
|
|
203
|
-
"web": "passed",
|
|
204
|
-
"401": "passed",
|
|
205
|
-
"a11y": "passed",
|
|
206
|
-
"theme": "passed",
|
|
207
|
-
"viewports": "passed"
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
```
|
|
211
|
-
|
|
212
|
-
真实 API/Agent evidence 必须覆盖目录、参数规划、三类媒体、LLM Agent 和 Web;`billedCallsExplicitlyAuthorized` 只证明操作者明确授权了本次计费调用,不得在 evidence 中记录 Key、请求头或其他 Secret:
|
|
213
|
-
|
|
214
|
-
```json
|
|
215
|
-
{
|
|
216
|
-
"version": 1,
|
|
217
|
-
"kind": "api-agent",
|
|
218
|
-
"status": "passed",
|
|
219
|
-
"package": { "name": "dsh-modellix", "version": "0.1.0" },
|
|
220
|
-
"commit": "<current-40-character-lowercase-git-head>",
|
|
221
|
-
"completedAt": "<canonical-utc-iso-8601>",
|
|
222
|
-
"checks": {
|
|
223
|
-
"catalogs": "passed",
|
|
224
|
-
"planner": "passed",
|
|
225
|
-
"image": "passed",
|
|
226
|
-
"video": "passed",
|
|
227
|
-
"audio": "passed",
|
|
228
|
-
"llm-agent": "passed",
|
|
229
|
-
"web": "passed"
|
|
230
|
-
},
|
|
231
|
-
"billedCallsExplicitlyAuthorized": true
|
|
232
|
-
}
|
|
233
|
-
```
|
|
167
|
+
`pnpm run verify:release` 还要求仓库外的浏览器与真实 API/Agent Evidence,并绑定准确的包版本和 40 位 Git commit。完整流程见[发布与验收清单](docs/zh-CN/RELEASE_CHECKLIST.md)。
|
|
234
168
|
|
|
235
|
-
|
|
169
|
+
## 当前限制
|
|
236
170
|
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
pnpm run test:real:modellix
|
|
243
|
-
```
|
|
171
|
+
- 本版本暂时隐藏高级精准参数编辑器入口。
|
|
172
|
+
- 尚未暴露上游任务取消能力。
|
|
173
|
+
- 结果历史保存任务元数据与上游 URL,不保存永久媒体副本。
|
|
174
|
+
- 遇到无法安全支持的复杂 Schema 时阻止提交,不猜测或丢弃约束。
|
|
175
|
+
- Modellix LLM 目录没有虚构的离线回退模型。
|
|
244
176
|
|
|
245
|
-
|
|
177
|
+
## 卸载
|
|
246
178
|
|
|
247
|
-
|
|
179
|
+
本地存储的 Credential 应先在 Modellix 设置页移除;环境来源 Credential 应在外部密钥管理器中撤销。然后移除插件并重启 profile:
|
|
248
180
|
|
|
249
181
|
```sh
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
182
|
+
dsh plugin --profile web remove dsh-modellix
|
|
183
|
+
dsh --profile web --dump-config
|
|
184
|
+
dsh --profile web
|
|
253
185
|
```
|
|
254
186
|
|
|
255
|
-
|
|
187
|
+
卸载不会删除 Modellix 上游任务、外部环境变量或所有 Harness profile 数据。
|
|
256
188
|
|
|
257
189
|
## 参考资料
|
|
258
190
|
|
|
259
191
|
- [Modellix 快速开始](https://docs.modellix.ai/get-started)
|
|
260
192
|
- [Modellix LLM 概览](https://docs.modellix.ai/llm/overview)
|
|
261
|
-
- [Modellix
|
|
193
|
+
- [Modellix 模型目录](https://www.modellix.ai/models)
|
|
262
194
|
- [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness)
|
|
263
195
|
|
|
264
196
|
## 许可证
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -42,7 +42,7 @@ pnpm run verify:pack
|
|
|
42
42
|
pnpm pack
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
The repository root will contain a file such as `dsh-modellix-0.
|
|
45
|
+
The repository root will contain a file such as `dsh-modellix-0.2.0.tgz`. Do not ask DSH to install the unbuilt TypeScript checkout directly.
|
|
46
46
|
|
|
47
47
|
## 3. Create an isolated local Harness environment
|
|
48
48
|
|
|
@@ -60,7 +60,7 @@ This affects only the current PowerShell process and its children. Omit this ste
|
|
|
60
60
|
Install the tarball into the `web` profile and inspect the merged configuration:
|
|
61
61
|
|
|
62
62
|
```powershell
|
|
63
|
-
dsh plugin --profile web add .\dsh-modellix-0.
|
|
63
|
+
dsh plugin --profile web add .\dsh-modellix-0.2.0.tgz
|
|
64
64
|
dsh --profile web --dump-config
|
|
65
65
|
```
|
|
66
66
|
|
|
@@ -99,17 +99,17 @@ A fresh profile may first show Harness's own DeepSeek initialization dialog. Com
|
|
|
99
99
|
2. Review the Design, LLM, and Web switches; all three start enabled.
|
|
100
100
|
3. Select “Save and enable.”
|
|
101
101
|
|
|
102
|
-
## 7. Use
|
|
102
|
+
## 7. Use chat-first media creation
|
|
103
103
|
|
|
104
|
-
1. Open
|
|
105
|
-
2.
|
|
106
|
-
3.
|
|
107
|
-
4.
|
|
108
|
-
5.
|
|
109
|
-
6.
|
|
110
|
-
7.
|
|
104
|
+
1. Open a conversation and describe the image, video, edit, transformation, or voice you want. Do not name tool functions.
|
|
105
|
+
2. The Agent searches the live catalog and reads the selected model Schema when needed.
|
|
106
|
+
3. For a request based on the previous result, the Agent reuses the latest relevant result URL and selects an edit/image-to-video/video-to-video model.
|
|
107
|
+
4. The Agent submits once and checks at most once in that turn.
|
|
108
|
+
5. Follow the live card in chat. It updates in place when the background task finishes; no second result card should appear.
|
|
109
|
+
6. Select **Modellix Design** at the far right of the session header to see all current-session results.
|
|
110
|
+
7. Use Preview/JSON on successful cards, image enlargement, native video/audio players, **Add URL to chat**, and **Download**.
|
|
111
111
|
|
|
112
|
-
|
|
112
|
+
The advanced exact-parameter editor remains internal but its entry is hidden in `0.2.0`. Routine UI flows do not display payment prompts; usage and details remain available in Modellix.
|
|
113
113
|
|
|
114
114
|
## 8. Use Modellix LLM models
|
|
115
115
|
|
|
@@ -119,9 +119,9 @@ Generation may be billed. The plugin does not automatically retry a billed POST.
|
|
|
119
119
|
|
|
120
120
|
The catalog is live. The plugin does not invent fallback models when it cannot load that catalog.
|
|
121
121
|
|
|
122
|
-
## 9. Use Web Search/Fetch
|
|
122
|
+
## 9. Use automatic Web Search/Fetch
|
|
123
123
|
|
|
124
|
-
With Web enabled, ask
|
|
124
|
+
With Web enabled, ask a current, external, URL, or source-verification question normally. The Agent automatically uses explicit `modellix_web_search` and `modellix_web_fetch` tools when needed; users do not need to name either tool.
|
|
125
125
|
|
|
126
126
|
## 10. Update the local plugin
|
|
127
127
|
|
|
@@ -135,7 +135,7 @@ After source changes:
|
|
|
135
135
|
Set-Location 'D:\work\maas\githup\dsh-modellix'
|
|
136
136
|
pnpm run verify:pack
|
|
137
137
|
pnpm pack
|
|
138
|
-
dsh plugin --profile web add .\dsh-modellix-0.
|
|
138
|
+
dsh plugin --profile web add .\dsh-modellix-0.2.0.tgz
|
|
139
139
|
dsh --profile web --dump-config
|
|
140
140
|
dsh --profile web --no-open
|
|
141
141
|
```
|
|
@@ -146,7 +146,9 @@ dsh --profile web --no-open
|
|
|
146
146
|
| --- | --- |
|
|
147
147
|
| A DeepSeek API Key dialog appears first | This is the fresh Harness profile's base initialization, not the Modellix dialog; complete it before configuring Modellix |
|
|
148
148
|
| The CLI is logged in but the plugin still requests a Key | The CLI Keychain and Harness Credential service are separate; save it in the plugin UI or inject `MODELLIX_API_KEY` into the Harness process |
|
|
149
|
-
|
|
|
149
|
+
| Modellix Design is missing | Inspect `--dump-config`, confirm Design is enabled, and fully restart the running profile after an update |
|
|
150
|
+
| A task remains stale in assistant prose | Current status belongs to the live card and right panel; `0.2.0` updates the card in the background and avoids nonterminal status wording in ordinary prose |
|
|
151
|
+
| One task shows two cards | This is not expected in `0.2.0`; record the job/tool call ids without Secrets and report a duplicate-card defect |
|
|
150
152
|
| The UI reports an invalid Key | Only an explicit Modellix 401 enters this state; replace a local Credential in settings, or update an environment source and restart |
|
|
151
153
|
| Balance is insufficient | A 402 is not treated as an invalid Key; fund the account or change the task before retrying manually |
|
|
152
154
|
| Requests are rate-limited | Wait for the 429 window to end before retrying manually |
|