@workglow/ai 0.0.85 → 0.0.87

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 (117) hide show
  1. package/README.md +165 -34
  2. package/dist/browser.js +3948 -1450
  3. package/dist/browser.js.map +50 -39
  4. package/dist/bun.js +3948 -1450
  5. package/dist/bun.js.map +50 -39
  6. package/dist/common.d.ts +0 -3
  7. package/dist/common.d.ts.map +1 -1
  8. package/dist/model/ModelRegistry.d.ts +2 -2
  9. package/dist/model/ModelRegistry.d.ts.map +1 -1
  10. package/dist/model/ModelRepository.d.ts +3 -3
  11. package/dist/model/ModelRepository.d.ts.map +1 -1
  12. package/dist/model/ModelSchema.d.ts +1 -1
  13. package/dist/node.js +3948 -1450
  14. package/dist/node.js.map +50 -39
  15. package/dist/provider/AiProviderRegistry.d.ts +1 -0
  16. package/dist/provider/AiProviderRegistry.d.ts.map +1 -1
  17. package/dist/task/BackgroundRemovalTask.d.ts +121 -289
  18. package/dist/task/BackgroundRemovalTask.d.ts.map +1 -1
  19. package/dist/task/ChunkRetrievalTask.d.ts +243 -0
  20. package/dist/task/ChunkRetrievalTask.d.ts.map +1 -0
  21. package/dist/task/ChunkToVectorTask.d.ts +183 -0
  22. package/dist/task/ChunkToVectorTask.d.ts.map +1 -0
  23. package/dist/task/ChunkVectorHybridSearchTask.d.ts +160 -0
  24. package/dist/task/ChunkVectorHybridSearchTask.d.ts.map +1 -0
  25. package/dist/task/ChunkVectorSearchTask.d.ts +137 -0
  26. package/dist/task/ChunkVectorSearchTask.d.ts.map +1 -0
  27. package/dist/task/ChunkVectorUpsertTask.d.ts +120 -0
  28. package/dist/task/ChunkVectorUpsertTask.d.ts.map +1 -0
  29. package/dist/task/ContextBuilderTask.d.ts +131 -0
  30. package/dist/task/ContextBuilderTask.d.ts.map +1 -0
  31. package/dist/task/DocumentEnricherTask.d.ts +232 -0
  32. package/dist/task/DocumentEnricherTask.d.ts.map +1 -0
  33. package/dist/task/DownloadModelTask.d.ts +80 -208
  34. package/dist/task/DownloadModelTask.d.ts.map +1 -1
  35. package/dist/task/FaceDetectorTask.d.ts +117 -272
  36. package/dist/task/FaceDetectorTask.d.ts.map +1 -1
  37. package/dist/task/FaceLandmarkerTask.d.ts +117 -272
  38. package/dist/task/FaceLandmarkerTask.d.ts.map +1 -1
  39. package/dist/task/GestureRecognizerTask.d.ts +129 -284
  40. package/dist/task/GestureRecognizerTask.d.ts.map +1 -1
  41. package/dist/task/HandLandmarkerTask.d.ts +125 -280
  42. package/dist/task/HandLandmarkerTask.d.ts.map +1 -1
  43. package/dist/task/HierarchicalChunkerTask.d.ts +212 -0
  44. package/dist/task/HierarchicalChunkerTask.d.ts.map +1 -0
  45. package/dist/task/HierarchyJoinTask.d.ts +318 -0
  46. package/dist/task/HierarchyJoinTask.d.ts.map +1 -0
  47. package/dist/task/ImageClassificationTask.d.ts +117 -272
  48. package/dist/task/ImageClassificationTask.d.ts.map +1 -1
  49. package/dist/task/ImageEmbeddingTask.d.ts +125 -446
  50. package/dist/task/ImageEmbeddingTask.d.ts.map +1 -1
  51. package/dist/task/ImageSegmentationTask.d.ts +117 -272
  52. package/dist/task/ImageSegmentationTask.d.ts.map +1 -1
  53. package/dist/task/ImageToTextTask.d.ts +117 -272
  54. package/dist/task/ImageToTextTask.d.ts.map +1 -1
  55. package/dist/task/ObjectDetectionTask.d.ts +119 -274
  56. package/dist/task/ObjectDetectionTask.d.ts.map +1 -1
  57. package/dist/task/PoseLandmarkerTask.d.ts +117 -272
  58. package/dist/task/PoseLandmarkerTask.d.ts.map +1 -1
  59. package/dist/task/QueryExpanderTask.d.ts +129 -0
  60. package/dist/task/QueryExpanderTask.d.ts.map +1 -0
  61. package/dist/task/RerankerTask.d.ts +209 -0
  62. package/dist/task/RerankerTask.d.ts.map +1 -0
  63. package/dist/task/StructuralParserTask.d.ts +91 -0
  64. package/dist/task/StructuralParserTask.d.ts.map +1 -0
  65. package/dist/task/TextChunkerTask.d.ts +129 -0
  66. package/dist/task/TextChunkerTask.d.ts.map +1 -0
  67. package/dist/task/TextClassificationTask.d.ts +42 -115
  68. package/dist/task/TextClassificationTask.d.ts.map +1 -1
  69. package/dist/task/TextEmbeddingTask.d.ts +55 -277
  70. package/dist/task/TextEmbeddingTask.d.ts.map +1 -1
  71. package/dist/task/TextFillMaskTask.d.ts +42 -115
  72. package/dist/task/TextFillMaskTask.d.ts.map +1 -1
  73. package/dist/task/TextGenerationTask.d.ts +44 -128
  74. package/dist/task/TextGenerationTask.d.ts.map +1 -1
  75. package/dist/task/TextLanguageDetectionTask.d.ts +42 -115
  76. package/dist/task/TextLanguageDetectionTask.d.ts.map +1 -1
  77. package/dist/task/TextNamedEntityRecognitionTask.d.ts +42 -115
  78. package/dist/task/TextNamedEntityRecognitionTask.d.ts.map +1 -1
  79. package/dist/task/TextQuestionAnswerTask.d.ts +47 -144
  80. package/dist/task/TextQuestionAnswerTask.d.ts.map +1 -1
  81. package/dist/task/TextRewriterTask.d.ts +45 -131
  82. package/dist/task/TextRewriterTask.d.ts.map +1 -1
  83. package/dist/task/TextSummaryTask.d.ts +42 -115
  84. package/dist/task/TextSummaryTask.d.ts.map +1 -1
  85. package/dist/task/TextTranslationTask.d.ts +54 -168
  86. package/dist/task/TextTranslationTask.d.ts.map +1 -1
  87. package/dist/task/TopicSegmenterTask.d.ts +148 -0
  88. package/dist/task/TopicSegmenterTask.d.ts.map +1 -0
  89. package/dist/task/UnloadModelTask.d.ts +80 -208
  90. package/dist/task/UnloadModelTask.d.ts.map +1 -1
  91. package/dist/task/VectorQuantizeTask.d.ts +120 -0
  92. package/dist/task/VectorQuantizeTask.d.ts.map +1 -0
  93. package/dist/task/VectorSimilarityTask.d.ts +18 -253
  94. package/dist/task/VectorSimilarityTask.d.ts.map +1 -1
  95. package/dist/task/base/AiTask.d.ts +24 -22
  96. package/dist/task/base/AiTask.d.ts.map +1 -1
  97. package/dist/task/base/AiTaskSchemas.d.ts +5 -129
  98. package/dist/task/base/AiTaskSchemas.d.ts.map +1 -1
  99. package/dist/task/base/AiVisionTask.d.ts +1 -4
  100. package/dist/task/base/AiVisionTask.d.ts.map +1 -1
  101. package/dist/task/index.d.ts +54 -1
  102. package/dist/task/index.d.ts.map +1 -1
  103. package/package.json +14 -9
  104. package/dist/source/Document.d.ts +0 -56
  105. package/dist/source/Document.d.ts.map +0 -1
  106. package/dist/source/DocumentConverter.d.ts +0 -15
  107. package/dist/source/DocumentConverter.d.ts.map +0 -1
  108. package/dist/source/DocumentConverterMarkdown.d.ts +0 -13
  109. package/dist/source/DocumentConverterMarkdown.d.ts.map +0 -1
  110. package/dist/source/DocumentConverterText.d.ts +0 -13
  111. package/dist/source/DocumentConverterText.d.ts.map +0 -1
  112. package/dist/source/MasterDocument.d.ts +0 -27
  113. package/dist/source/MasterDocument.d.ts.map +0 -1
  114. package/dist/source/index.d.ts +0 -10
  115. package/dist/source/index.d.ts.map +0 -1
  116. package/dist/task/DocumentSplitterTask.d.ts +0 -58
  117. package/dist/task/DocumentSplitterTask.d.ts.map +0 -1
@@ -6,115 +6,57 @@
6
6
  import { CreateWorkflow, JobQueueTaskConfig } from "@workglow/task-graph";
7
7
  import { DataPortSchema, FromSchema } from "@workglow/util";
8
8
  import { AiTask } from "./base/AiTask";
9
- import { DeReplicateFromSchema } from "./base/AiTaskSchemas";
10
9
  declare const DownloadModelInputSchema: {
11
10
  readonly type: "object";
12
11
  readonly properties: {
13
12
  readonly model: {
14
- readonly "x-replicate": true;
15
- readonly format?: string | undefined;
16
13
  readonly oneOf: readonly [{
17
- readonly oneOf: readonly [{
18
- readonly title: "Model";
19
- readonly description: `The model ${string}`;
20
- } & {
21
- readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
22
- readonly type: "string";
23
- }, {
24
- readonly type: "object";
25
- readonly properties: {
26
- readonly model_id: {
27
- readonly type: "string";
28
- };
29
- readonly tasks: {
30
- readonly type: "array";
31
- readonly items: {
32
- readonly type: "string";
33
- };
34
- readonly "x-ui-editor": "multiselect";
35
- };
36
- readonly title: {
37
- readonly type: "string";
38
- };
39
- readonly description: {
40
- readonly type: "string";
41
- readonly "x-ui-editor": "textarea";
42
- };
43
- readonly provider: {
44
- readonly type: "string";
45
- };
46
- readonly provider_config: {
47
- readonly type: "object";
48
- readonly default: {};
49
- };
50
- readonly metadata: {
51
- readonly type: "object";
52
- readonly default: {};
53
- readonly "x-ui-hidden": true;
54
- };
55
- };
56
- readonly required: readonly ["provider", "provider_config"];
57
- readonly format: "model";
58
- readonly additionalProperties: false;
59
- } & {
60
- readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
61
- }];
14
+ readonly title: "Model";
15
+ readonly description: `The model ${string}`;
62
16
  } & {
63
17
  readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
18
+ readonly type: "string";
64
19
  }, {
65
- readonly type: "array";
66
- readonly items: {
67
- readonly oneOf: readonly [{
68
- readonly title: "Model";
69
- readonly description: `The model ${string}`;
70
- } & {
71
- readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
20
+ readonly type: "object";
21
+ readonly properties: {
22
+ readonly model_id: {
72
23
  readonly type: "string";
73
- }, {
74
- readonly type: "object";
75
- readonly properties: {
76
- readonly model_id: {
77
- readonly type: "string";
78
- };
79
- readonly tasks: {
80
- readonly type: "array";
81
- readonly items: {
82
- readonly type: "string";
83
- };
84
- readonly "x-ui-editor": "multiselect";
85
- };
86
- readonly title: {
87
- readonly type: "string";
88
- };
89
- readonly description: {
90
- readonly type: "string";
91
- readonly "x-ui-editor": "textarea";
92
- };
93
- readonly provider: {
94
- readonly type: "string";
95
- };
96
- readonly provider_config: {
97
- readonly type: "object";
98
- readonly default: {};
99
- };
100
- readonly metadata: {
101
- readonly type: "object";
102
- readonly default: {};
103
- readonly "x-ui-hidden": true;
104
- };
24
+ };
25
+ readonly tasks: {
26
+ readonly type: "array";
27
+ readonly items: {
28
+ readonly type: "string";
105
29
  };
106
- readonly required: readonly ["provider", "provider_config"];
107
- readonly format: "model";
108
- readonly additionalProperties: false;
109
- } & {
110
- readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
111
- }];
112
- } & {
113
- readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
30
+ readonly "x-ui-editor": "multiselect";
31
+ };
32
+ readonly title: {
33
+ readonly type: "string";
34
+ };
35
+ readonly description: {
36
+ readonly type: "string";
37
+ readonly "x-ui-editor": "textarea";
38
+ };
39
+ readonly provider: {
40
+ readonly type: "string";
41
+ };
42
+ readonly provider_config: {
43
+ readonly type: "object";
44
+ readonly default: {};
45
+ };
46
+ readonly metadata: {
47
+ readonly type: "object";
48
+ readonly default: {};
49
+ readonly "x-ui-hidden": true;
50
+ };
114
51
  };
52
+ readonly required: readonly ["provider", "provider_config"];
53
+ readonly format: "model";
54
+ readonly additionalProperties: true;
55
+ } & {
56
+ readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
115
57
  }];
116
- readonly title: string | undefined;
117
- readonly description: string | undefined;
58
+ } & {
59
+ readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
118
60
  };
119
61
  };
120
62
  readonly required: readonly ["model"];
@@ -124,110 +66,53 @@ declare const DownloadModelOutputSchema: {
124
66
  readonly type: "object";
125
67
  readonly properties: {
126
68
  readonly model: {
127
- readonly "x-replicate": true;
128
- readonly format?: string | undefined;
129
69
  readonly oneOf: readonly [{
130
- readonly oneOf: readonly [{
131
- readonly title: "Model";
132
- readonly description: `The model ${string}`;
133
- } & {
134
- readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
135
- readonly type: "string";
136
- }, {
137
- readonly type: "object";
138
- readonly properties: {
139
- readonly model_id: {
140
- readonly type: "string";
141
- };
142
- readonly tasks: {
143
- readonly type: "array";
144
- readonly items: {
145
- readonly type: "string";
146
- };
147
- readonly "x-ui-editor": "multiselect";
148
- };
149
- readonly title: {
150
- readonly type: "string";
151
- };
152
- readonly description: {
153
- readonly type: "string";
154
- readonly "x-ui-editor": "textarea";
155
- };
156
- readonly provider: {
157
- readonly type: "string";
158
- };
159
- readonly provider_config: {
160
- readonly type: "object";
161
- readonly default: {};
162
- };
163
- readonly metadata: {
164
- readonly type: "object";
165
- readonly default: {};
166
- readonly "x-ui-hidden": true;
167
- };
168
- };
169
- readonly required: readonly ["provider", "provider_config"];
170
- readonly format: "model";
171
- readonly additionalProperties: false;
172
- } & {
173
- readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
174
- }];
70
+ readonly title: "Model";
71
+ readonly description: `The model ${string}`;
175
72
  } & {
176
73
  readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
74
+ readonly type: "string";
177
75
  }, {
178
- readonly type: "array";
179
- readonly items: {
180
- readonly oneOf: readonly [{
181
- readonly title: "Model";
182
- readonly description: `The model ${string}`;
183
- } & {
184
- readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
76
+ readonly type: "object";
77
+ readonly properties: {
78
+ readonly model_id: {
185
79
  readonly type: "string";
186
- }, {
187
- readonly type: "object";
188
- readonly properties: {
189
- readonly model_id: {
190
- readonly type: "string";
191
- };
192
- readonly tasks: {
193
- readonly type: "array";
194
- readonly items: {
195
- readonly type: "string";
196
- };
197
- readonly "x-ui-editor": "multiselect";
198
- };
199
- readonly title: {
200
- readonly type: "string";
201
- };
202
- readonly description: {
203
- readonly type: "string";
204
- readonly "x-ui-editor": "textarea";
205
- };
206
- readonly provider: {
207
- readonly type: "string";
208
- };
209
- readonly provider_config: {
210
- readonly type: "object";
211
- readonly default: {};
212
- };
213
- readonly metadata: {
214
- readonly type: "object";
215
- readonly default: {};
216
- readonly "x-ui-hidden": true;
217
- };
80
+ };
81
+ readonly tasks: {
82
+ readonly type: "array";
83
+ readonly items: {
84
+ readonly type: "string";
218
85
  };
219
- readonly required: readonly ["provider", "provider_config"];
220
- readonly format: "model";
221
- readonly additionalProperties: false;
222
- } & {
223
- readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
224
- }];
225
- } & {
226
- readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
86
+ readonly "x-ui-editor": "multiselect";
87
+ };
88
+ readonly title: {
89
+ readonly type: "string";
90
+ };
91
+ readonly description: {
92
+ readonly type: "string";
93
+ readonly "x-ui-editor": "textarea";
94
+ };
95
+ readonly provider: {
96
+ readonly type: "string";
97
+ };
98
+ readonly provider_config: {
99
+ readonly type: "object";
100
+ readonly default: {};
101
+ };
102
+ readonly metadata: {
103
+ readonly type: "object";
104
+ readonly default: {};
105
+ readonly "x-ui-hidden": true;
106
+ };
227
107
  };
108
+ readonly required: readonly ["provider", "provider_config"];
109
+ readonly format: "model";
110
+ readonly additionalProperties: true;
111
+ } & {
112
+ readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
228
113
  }];
229
- readonly title: string | undefined;
230
- readonly description: string | undefined;
114
+ } & {
115
+ readonly format: import("./base/AiTaskSchemas").TypeModelSemantic;
231
116
  };
232
117
  };
233
118
  readonly required: readonly ["model"];
@@ -235,8 +120,6 @@ declare const DownloadModelOutputSchema: {
235
120
  };
236
121
  export type DownloadModelTaskRunInput = FromSchema<typeof DownloadModelInputSchema>;
237
122
  export type DownloadModelTaskRunOutput = FromSchema<typeof DownloadModelOutputSchema>;
238
- export type DownloadModelTaskExecuteInput = DeReplicateFromSchema<typeof DownloadModelInputSchema>;
239
- export type DownloadModelTaskExecuteOutput = DeReplicateFromSchema<typeof DownloadModelOutputSchema>;
240
123
  /**
241
124
  * Download a model from a remote source and cache it locally.
242
125
  *
@@ -276,6 +159,7 @@ export declare class DownloadModelTask extends AiTask<DownloadModelTaskRunInput,
276
159
  */
277
160
  export declare const downloadModel: (input: DownloadModelTaskRunInput, config?: JobQueueTaskConfig) => Promise<{
278
161
  model: string | {
162
+ [x: string]: unknown;
279
163
  title?: string | undefined;
280
164
  description?: string | undefined;
281
165
  model_id?: string | undefined;
@@ -287,19 +171,7 @@ export declare const downloadModel: (input: DownloadModelTaskRunInput, config?:
287
171
  provider_config: {
288
172
  [x: string]: unknown;
289
173
  };
290
- } | (string | {
291
- title?: string | undefined;
292
- description?: string | undefined;
293
- model_id?: string | undefined;
294
- tasks?: string[] | undefined;
295
- metadata?: {
296
- [x: string]: unknown;
297
- } | undefined;
298
- provider: string;
299
- provider_config: {
300
- [x: string]: unknown;
301
- };
302
- })[];
174
+ };
303
175
  }>;
304
176
  declare module "@workglow/task-graph" {
305
177
  interface Workflow {
@@ -1 +1 @@
1
- {"version":3,"file":"DownloadModelTask.d.ts","sourceRoot":"","sources":["../../src/task/DownloadModelTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,cAAc,EAAE,kBAAkB,EAA0B,MAAM,sBAAsB,CAAC;AAClG,OAAO,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,EAAE,qBAAqB,EAAiC,MAAM,sBAAsB,CAAC;AAI5F,QAAA,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOK,CAAC;AAEpC,QAAA,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOI,CAAC;AAEpC,MAAM,MAAM,yBAAyB,GAAG,UAAU,CAAC,OAAO,wBAAwB,CAAC,CAAC;AACpF,MAAM,MAAM,0BAA0B,GAAG,UAAU,CAAC,OAAO,yBAAyB,CAAC,CAAC;AACtF,MAAM,MAAM,6BAA6B,GAAG,qBAAqB,CAAC,OAAO,wBAAwB,CAAC,CAAC;AACnG,MAAM,MAAM,8BAA8B,GAAG,qBAAqB,CAChE,OAAO,yBAAyB,CACjC,CAAC;AAEF;;;;;GAKG;AACH,qBAAa,iBAAkB,SAAQ,MAAM,CAC3C,yBAAyB,EACzB,0BAA0B,EAC1B,kBAAkB,CACnB;IACC,OAAc,IAAI,SAAuB;IACzC,OAAc,QAAQ,SAAmB;IACzC,OAAc,KAAK,SAAoB;IACvC,OAAc,WAAW,SAAmE;WAC9E,WAAW,IAAI,cAAc;WAG7B,YAAY,IAAI,cAAc;IAG5C,OAAc,SAAS,UAAS;IAEzB,KAAK,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,EAAE,CAAM;gBAE5C,KAAK,EAAE,OAAO,CAAC,yBAAyB,CAAC,EAAE,MAAM,GAAE,kBAAuB;IAQtF;;;;;OAKG;IACH,eAAe,CACb,QAAQ,EAAE,MAAM,EAChB,OAAO,GAAE,MAAW,EACpB,OAAO,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GAC3D,IAAI;CAaR;AAID;;;;;GAKG;AACH,eAAO,MAAM,aAAa,GAAI,OAAO,yBAAyB,EAAE,SAAS,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;EAE1F,CAAC;AAEF,OAAO,QAAQ,sBAAsB,CAAC;IACpC,UAAU,QAAQ;QAChB,aAAa,EAAE,cAAc,CAC3B,yBAAyB,EACzB,0BAA0B,EAC1B,kBAAkB,CACnB,CAAC;KACH;CACF"}
1
+ {"version":3,"file":"DownloadModelTask.d.ts","sourceRoot":"","sources":["../../src/task/DownloadModelTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,cAAc,EAAE,kBAAkB,EAAY,MAAM,sBAAsB,CAAC;AACpF,OAAO,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAKvC,QAAA,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOK,CAAC;AAEpC,QAAA,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOI,CAAC;AAEpC,MAAM,MAAM,yBAAyB,GAAG,UAAU,CAAC,OAAO,wBAAwB,CAAC,CAAC;AACpF,MAAM,MAAM,0BAA0B,GAAG,UAAU,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAEtF;;;;;GAKG;AACH,qBAAa,iBAAkB,SAAQ,MAAM,CAC3C,yBAAyB,EACzB,0BAA0B,EAC1B,kBAAkB,CACnB;IACC,OAAc,IAAI,SAAuB;IACzC,OAAc,QAAQ,SAAmB;IACzC,OAAc,KAAK,SAAoB;IACvC,OAAc,WAAW,SAAmE;WAC9E,WAAW,IAAI,cAAc;WAG7B,YAAY,IAAI,cAAc;IAG5C,OAAc,SAAS,UAAS;IAEzB,KAAK,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,EAAE,CAAM;gBAE5C,KAAK,EAAE,OAAO,CAAC,yBAAyB,CAAC,EAAE,MAAM,GAAE,kBAAuB;IAQtF;;;;;OAKG;IACH,eAAe,CACb,QAAQ,EAAE,MAAM,EAChB,OAAO,GAAE,MAAW,EACpB,OAAO,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GAC3D,IAAI;CAaR;AAED;;;;;GAKG;AACH,eAAO,MAAM,aAAa,GAAI,OAAO,yBAAyB,EAAE,SAAS,kBAAkB;;;;;;;;;;;;;;;EAE1F,CAAC;AAEF,OAAO,QAAQ,sBAAsB,CAAC;IACpC,UAAU,QAAQ;QAChB,aAAa,EAAE,cAAc,CAC3B,yBAAyB,EACzB,0BAA0B,EAC1B,kBAAkB,CACnB,CAAC;KACH;CACF"}