@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.
- package/README.md +165 -34
- package/dist/browser.js +3948 -1450
- package/dist/browser.js.map +50 -39
- package/dist/bun.js +3948 -1450
- package/dist/bun.js.map +50 -39
- package/dist/common.d.ts +0 -3
- package/dist/common.d.ts.map +1 -1
- package/dist/model/ModelRegistry.d.ts +2 -2
- package/dist/model/ModelRegistry.d.ts.map +1 -1
- package/dist/model/ModelRepository.d.ts +3 -3
- package/dist/model/ModelRepository.d.ts.map +1 -1
- package/dist/model/ModelSchema.d.ts +1 -1
- package/dist/node.js +3948 -1450
- package/dist/node.js.map +50 -39
- package/dist/provider/AiProviderRegistry.d.ts +1 -0
- package/dist/provider/AiProviderRegistry.d.ts.map +1 -1
- package/dist/task/BackgroundRemovalTask.d.ts +121 -289
- package/dist/task/BackgroundRemovalTask.d.ts.map +1 -1
- package/dist/task/ChunkRetrievalTask.d.ts +243 -0
- package/dist/task/ChunkRetrievalTask.d.ts.map +1 -0
- package/dist/task/ChunkToVectorTask.d.ts +183 -0
- package/dist/task/ChunkToVectorTask.d.ts.map +1 -0
- package/dist/task/ChunkVectorHybridSearchTask.d.ts +160 -0
- package/dist/task/ChunkVectorHybridSearchTask.d.ts.map +1 -0
- package/dist/task/ChunkVectorSearchTask.d.ts +137 -0
- package/dist/task/ChunkVectorSearchTask.d.ts.map +1 -0
- package/dist/task/ChunkVectorUpsertTask.d.ts +120 -0
- package/dist/task/ChunkVectorUpsertTask.d.ts.map +1 -0
- package/dist/task/ContextBuilderTask.d.ts +131 -0
- package/dist/task/ContextBuilderTask.d.ts.map +1 -0
- package/dist/task/DocumentEnricherTask.d.ts +232 -0
- package/dist/task/DocumentEnricherTask.d.ts.map +1 -0
- package/dist/task/DownloadModelTask.d.ts +80 -208
- package/dist/task/DownloadModelTask.d.ts.map +1 -1
- package/dist/task/FaceDetectorTask.d.ts +117 -272
- package/dist/task/FaceDetectorTask.d.ts.map +1 -1
- package/dist/task/FaceLandmarkerTask.d.ts +117 -272
- package/dist/task/FaceLandmarkerTask.d.ts.map +1 -1
- package/dist/task/GestureRecognizerTask.d.ts +129 -284
- package/dist/task/GestureRecognizerTask.d.ts.map +1 -1
- package/dist/task/HandLandmarkerTask.d.ts +125 -280
- package/dist/task/HandLandmarkerTask.d.ts.map +1 -1
- package/dist/task/HierarchicalChunkerTask.d.ts +212 -0
- package/dist/task/HierarchicalChunkerTask.d.ts.map +1 -0
- package/dist/task/HierarchyJoinTask.d.ts +318 -0
- package/dist/task/HierarchyJoinTask.d.ts.map +1 -0
- package/dist/task/ImageClassificationTask.d.ts +117 -272
- package/dist/task/ImageClassificationTask.d.ts.map +1 -1
- package/dist/task/ImageEmbeddingTask.d.ts +125 -446
- package/dist/task/ImageEmbeddingTask.d.ts.map +1 -1
- package/dist/task/ImageSegmentationTask.d.ts +117 -272
- package/dist/task/ImageSegmentationTask.d.ts.map +1 -1
- package/dist/task/ImageToTextTask.d.ts +117 -272
- package/dist/task/ImageToTextTask.d.ts.map +1 -1
- package/dist/task/ObjectDetectionTask.d.ts +119 -274
- package/dist/task/ObjectDetectionTask.d.ts.map +1 -1
- package/dist/task/PoseLandmarkerTask.d.ts +117 -272
- package/dist/task/PoseLandmarkerTask.d.ts.map +1 -1
- package/dist/task/QueryExpanderTask.d.ts +129 -0
- package/dist/task/QueryExpanderTask.d.ts.map +1 -0
- package/dist/task/RerankerTask.d.ts +209 -0
- package/dist/task/RerankerTask.d.ts.map +1 -0
- package/dist/task/StructuralParserTask.d.ts +91 -0
- package/dist/task/StructuralParserTask.d.ts.map +1 -0
- package/dist/task/TextChunkerTask.d.ts +129 -0
- package/dist/task/TextChunkerTask.d.ts.map +1 -0
- package/dist/task/TextClassificationTask.d.ts +42 -115
- package/dist/task/TextClassificationTask.d.ts.map +1 -1
- package/dist/task/TextEmbeddingTask.d.ts +55 -277
- package/dist/task/TextEmbeddingTask.d.ts.map +1 -1
- package/dist/task/TextFillMaskTask.d.ts +42 -115
- package/dist/task/TextFillMaskTask.d.ts.map +1 -1
- package/dist/task/TextGenerationTask.d.ts +44 -128
- package/dist/task/TextGenerationTask.d.ts.map +1 -1
- package/dist/task/TextLanguageDetectionTask.d.ts +42 -115
- package/dist/task/TextLanguageDetectionTask.d.ts.map +1 -1
- package/dist/task/TextNamedEntityRecognitionTask.d.ts +42 -115
- package/dist/task/TextNamedEntityRecognitionTask.d.ts.map +1 -1
- package/dist/task/TextQuestionAnswerTask.d.ts +47 -144
- package/dist/task/TextQuestionAnswerTask.d.ts.map +1 -1
- package/dist/task/TextRewriterTask.d.ts +45 -131
- package/dist/task/TextRewriterTask.d.ts.map +1 -1
- package/dist/task/TextSummaryTask.d.ts +42 -115
- package/dist/task/TextSummaryTask.d.ts.map +1 -1
- package/dist/task/TextTranslationTask.d.ts +54 -168
- package/dist/task/TextTranslationTask.d.ts.map +1 -1
- package/dist/task/TopicSegmenterTask.d.ts +148 -0
- package/dist/task/TopicSegmenterTask.d.ts.map +1 -0
- package/dist/task/UnloadModelTask.d.ts +80 -208
- package/dist/task/UnloadModelTask.d.ts.map +1 -1
- package/dist/task/VectorQuantizeTask.d.ts +120 -0
- package/dist/task/VectorQuantizeTask.d.ts.map +1 -0
- package/dist/task/VectorSimilarityTask.d.ts +18 -253
- package/dist/task/VectorSimilarityTask.d.ts.map +1 -1
- package/dist/task/base/AiTask.d.ts +24 -22
- package/dist/task/base/AiTask.d.ts.map +1 -1
- package/dist/task/base/AiTaskSchemas.d.ts +5 -129
- package/dist/task/base/AiTaskSchemas.d.ts.map +1 -1
- package/dist/task/base/AiVisionTask.d.ts +1 -4
- package/dist/task/base/AiVisionTask.d.ts.map +1 -1
- package/dist/task/index.d.ts +54 -1
- package/dist/task/index.d.ts.map +1 -1
- package/package.json +14 -9
- package/dist/source/Document.d.ts +0 -56
- package/dist/source/Document.d.ts.map +0 -1
- package/dist/source/DocumentConverter.d.ts +0 -15
- package/dist/source/DocumentConverter.d.ts.map +0 -1
- package/dist/source/DocumentConverterMarkdown.d.ts +0 -13
- package/dist/source/DocumentConverterMarkdown.d.ts.map +0 -1
- package/dist/source/DocumentConverterText.d.ts +0 -13
- package/dist/source/DocumentConverterText.d.ts.map +0 -1
- package/dist/source/MasterDocument.d.ts +0 -27
- package/dist/source/MasterDocument.d.ts.map +0 -1
- package/dist/source/index.d.ts +0 -10
- package/dist/source/index.d.ts.map +0 -1
- package/dist/task/DocumentSplitterTask.d.ts +0 -58
- 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
|
|
18
|
-
|
|
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: "
|
|
66
|
-
readonly
|
|
67
|
-
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
|
-
|
|
75
|
-
readonly
|
|
76
|
-
|
|
77
|
-
|
|
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
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
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
|
-
|
|
117
|
-
readonly
|
|
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
|
|
131
|
-
|
|
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: "
|
|
179
|
-
readonly
|
|
180
|
-
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
|
-
|
|
188
|
-
readonly
|
|
189
|
-
|
|
190
|
-
|
|
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
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
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
|
-
|
|
230
|
-
readonly
|
|
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
|
-
}
|
|
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,
|
|
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"}
|