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/lib/client.d.ts
CHANGED
|
@@ -69,6 +69,8 @@ interface DesignModelWire {
|
|
|
69
69
|
readonly id: string;
|
|
70
70
|
readonly label: string;
|
|
71
71
|
readonly kind: "image" | "video" | "audio" | "unknown";
|
|
72
|
+
readonly taskType?: string;
|
|
73
|
+
readonly description?: string;
|
|
72
74
|
readonly featured: boolean;
|
|
73
75
|
readonly available: boolean;
|
|
74
76
|
readonly unavailableReason: DesignModelUnavailableCode | null;
|
|
@@ -190,6 +192,10 @@ declare const MODELLIX_CLIENT_SLOTS: readonly [{
|
|
|
190
192
|
readonly name: "shell.overlay";
|
|
191
193
|
readonly id: "modellix.credential-recovery";
|
|
192
194
|
readonly order: 10;
|
|
195
|
+
}, {
|
|
196
|
+
readonly name: "shell.overlay";
|
|
197
|
+
readonly id: "modellix.design-drawer";
|
|
198
|
+
readonly order: 20;
|
|
193
199
|
}, {
|
|
194
200
|
readonly name: "settings.onboarding";
|
|
195
201
|
readonly id: "modellix.onboarding";
|
|
@@ -199,9 +205,17 @@ declare const MODELLIX_CLIENT_SLOTS: readonly [{
|
|
|
199
205
|
readonly id: "modellix";
|
|
200
206
|
readonly order: 30;
|
|
201
207
|
}, {
|
|
202
|
-
readonly name: "conversation.
|
|
203
|
-
readonly id: "modellix.design";
|
|
208
|
+
readonly name: "conversation.session.header.utilities";
|
|
209
|
+
readonly id: "modellix.design-launcher";
|
|
204
210
|
readonly order: 20;
|
|
211
|
+
}, {
|
|
212
|
+
readonly name: "tool.call.toolview";
|
|
213
|
+
readonly key: "modellix_media_generate";
|
|
214
|
+
readonly priority: 20;
|
|
215
|
+
}, {
|
|
216
|
+
readonly name: "tool.call.toolview";
|
|
217
|
+
readonly key: "modellix_media_get_result";
|
|
218
|
+
readonly priority: 20;
|
|
205
219
|
}];
|
|
206
220
|
type ModellixClientSlotDefinition = (typeof MODELLIX_CLIENT_SLOTS)[number];
|
|
207
221
|
//#endregion
|