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.
Files changed (37) hide show
  1. package/CHANGELOG.md +56 -0
  2. package/README.md +101 -169
  3. package/README.zh-CN.md +99 -167
  4. package/docs/assets/chat-media-generation-en.webp +0 -0
  5. package/docs/assets/chat-media-generation-zh.webp +0 -0
  6. package/docs/assets/design-results-drawer-en.webp +0 -0
  7. package/docs/assets/design-results-drawer-zh.webp +0 -0
  8. package/docs/assets/llm-model-selector-en.webp +0 -0
  9. package/docs/assets/llm-model-selector-zh.webp +0 -0
  10. package/docs/assets/media-players-en.webp +0 -0
  11. package/docs/assets/media-players-zh.webp +0 -0
  12. package/docs/assets/settings-ready-en.webp +0 -0
  13. package/docs/assets/settings-ready-zh.webp +0 -0
  14. package/docs/assets/web-tools-auto-en.webp +0 -0
  15. package/docs/assets/web-tools-auto-zh.webp +0 -0
  16. package/docs/en-US/LOCAL_USAGE.md +17 -15
  17. package/docs/en-US/RELEASE_CHECKLIST.md +270 -0
  18. package/docs/en-US/USER_GUIDE.md +183 -401
  19. package/docs/zh-CN/LOCAL_USAGE.md +17 -15
  20. package/docs/zh-CN/RELEASE_CHECKLIST.md +270 -0
  21. package/docs/zh-CN/USER_GUIDE.md +182 -400
  22. package/lib/client.d.ts +16 -2
  23. package/lib/client.js +1308 -466
  24. package/lib/client.js.map +1 -1
  25. package/lib/index.d.ts +159 -109
  26. package/lib/index.js +995 -192
  27. package/lib/index.js.map +1 -1
  28. package/package.json +7 -2
  29. package/docs/assets/credential-recovery.webp +0 -0
  30. package/docs/assets/design-desktop.webp +0 -0
  31. package/docs/assets/design-mobile-en.webp +0 -0
  32. package/docs/assets/design-proposal.webp +0 -0
  33. package/docs/assets/design-results-media.webp +0 -0
  34. package/docs/assets/llm-model-selector.webp +0 -0
  35. package/docs/assets/onboarding-defaults.webp +0 -0
  36. package/docs/assets/settings-ready.webp +0 -0
  37. 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.view";
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