@osdk/foundry.models 2.46.0 → 2.48.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 +24 -0
- package/build/browser/_components.d.ts +287 -0
- package/build/browser/_components.d.ts.map +1 -1
- package/build/browser/_errors.d.ts +138 -0
- package/build/browser/_errors.d.ts.map +1 -1
- package/build/browser/index.d.ts +6 -2
- package/build/browser/index.d.ts.map +1 -1
- package/build/browser/index.js +4 -0
- package/build/browser/index.js.map +1 -1
- package/build/browser/public/ModelStudio.d.ts +47 -0
- package/build/browser/public/ModelStudio.d.ts.map +1 -0
- package/build/browser/public/ModelStudio.js +54 -0
- package/build/browser/public/ModelStudio.js.map +1 -0
- package/build/browser/public/ModelStudioConfigVersion.d.ts +65 -0
- package/build/browser/public/ModelStudioConfigVersion.d.ts.map +1 -0
- package/build/browser/public/ModelStudioConfigVersion.js +66 -0
- package/build/browser/public/ModelStudioConfigVersion.js.map +1 -0
- package/build/browser/public/ModelStudioRun.d.ts +22 -0
- package/build/browser/public/ModelStudioRun.d.ts.map +1 -0
- package/build/browser/public/ModelStudioRun.js +30 -0
- package/build/browser/public/ModelStudioRun.js.map +1 -0
- package/build/browser/public/ModelStudioTrainer.d.ts +35 -0
- package/build/browser/public/ModelStudioTrainer.d.ts.map +1 -0
- package/build/browser/public/ModelStudioTrainer.js +42 -0
- package/build/browser/public/ModelStudioTrainer.js.map +1 -0
- package/build/esm/_components.d.ts +287 -0
- package/build/esm/_components.d.ts.map +1 -1
- package/build/esm/_errors.d.ts +138 -0
- package/build/esm/_errors.d.ts.map +1 -1
- package/build/esm/index.d.ts +6 -2
- package/build/esm/index.d.ts.map +1 -1
- package/build/esm/index.js +4 -0
- package/build/esm/index.js.map +1 -1
- package/build/esm/public/ModelStudio.d.ts +47 -0
- package/build/esm/public/ModelStudio.d.ts.map +1 -0
- package/build/esm/public/ModelStudio.js +54 -0
- package/build/esm/public/ModelStudio.js.map +1 -0
- package/build/esm/public/ModelStudioConfigVersion.d.ts +65 -0
- package/build/esm/public/ModelStudioConfigVersion.d.ts.map +1 -0
- package/build/esm/public/ModelStudioConfigVersion.js +66 -0
- package/build/esm/public/ModelStudioConfigVersion.js.map +1 -0
- package/build/esm/public/ModelStudioRun.d.ts +22 -0
- package/build/esm/public/ModelStudioRun.d.ts.map +1 -0
- package/build/esm/public/ModelStudioRun.js +30 -0
- package/build/esm/public/ModelStudioRun.js.map +1 -0
- package/build/esm/public/ModelStudioTrainer.d.ts +35 -0
- package/build/esm/public/ModelStudioTrainer.d.ts.map +1 -0
- package/build/esm/public/ModelStudioTrainer.js +42 -0
- package/build/esm/public/ModelStudioTrainer.js.map +1 -0
- package/package.json +4 -4
|
@@ -8,6 +8,18 @@ export type LooselyBrandedString<T extends string> = string & {
|
|
|
8
8
|
*/
|
|
9
9
|
export interface BooleanType {
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The name of a column in a dataset.
|
|
13
|
+
*
|
|
14
|
+
* Log Safety: UNSAFE
|
|
15
|
+
*/
|
|
16
|
+
export type ColumnName = LooselyBrandedString<"ColumnName">;
|
|
17
|
+
/**
|
|
18
|
+
* An identifier for a column type specification.
|
|
19
|
+
*
|
|
20
|
+
* Log Safety: UNSAFE
|
|
21
|
+
*/
|
|
22
|
+
export type ColumnTypeSpecId = LooselyBrandedString<"ColumnTypeSpecId">;
|
|
11
23
|
/**
|
|
12
24
|
* Log Safety: UNSAFE
|
|
13
25
|
*/
|
|
@@ -15,6 +27,23 @@ export interface CreateModelRequest {
|
|
|
15
27
|
name: ModelName;
|
|
16
28
|
parentFolderRid: _Filesystem.FolderRid;
|
|
17
29
|
}
|
|
30
|
+
/**
|
|
31
|
+
* Log Safety: UNSAFE
|
|
32
|
+
*/
|
|
33
|
+
export interface CreateModelStudioConfigVersionRequest {
|
|
34
|
+
name: ModelStudioConfigVersionName;
|
|
35
|
+
resources: ResourceConfiguration;
|
|
36
|
+
changelog?: string;
|
|
37
|
+
workerConfig: ModelStudioWorkerConfig;
|
|
38
|
+
trainerId: TrainerId;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Log Safety: UNSAFE
|
|
42
|
+
*/
|
|
43
|
+
export interface CreateModelStudioRequest {
|
|
44
|
+
name: string;
|
|
45
|
+
parentFolderRid: _Filesystem.FolderRid;
|
|
46
|
+
}
|
|
18
47
|
/**
|
|
19
48
|
* Log Safety: UNSAFE
|
|
20
49
|
*/
|
|
@@ -24,6 +53,17 @@ export interface CreateModelVersionRequest {
|
|
|
24
53
|
condaRequirements: Array<string>;
|
|
25
54
|
modelApi: ModelApi;
|
|
26
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* Dataset input configuration.
|
|
58
|
+
*
|
|
59
|
+
* Log Safety: UNSAFE
|
|
60
|
+
*/
|
|
61
|
+
export interface DatasetInput {
|
|
62
|
+
rid: string;
|
|
63
|
+
columnMapping: Record<ColumnTypeSpecId, Array<_Core.ColumnName>>;
|
|
64
|
+
ignoreColumns: Array<_Core.ColumnName>;
|
|
65
|
+
selectColumns: Array<_Core.ColumnName>;
|
|
66
|
+
}
|
|
27
67
|
/**
|
|
28
68
|
* Log Safety: SAFE
|
|
29
69
|
*/
|
|
@@ -45,11 +85,38 @@ export interface DoubleType {
|
|
|
45
85
|
*/
|
|
46
86
|
export interface FloatType {
|
|
47
87
|
}
|
|
88
|
+
/**
|
|
89
|
+
* A string alias used to identify inputs in a Model Studio configuration.
|
|
90
|
+
*
|
|
91
|
+
* Log Safety: UNSAFE
|
|
92
|
+
*/
|
|
93
|
+
export type InputAlias = LooselyBrandedString<"InputAlias">;
|
|
48
94
|
/**
|
|
49
95
|
* Log Safety: SAFE
|
|
50
96
|
*/
|
|
51
97
|
export interface IntegerType {
|
|
52
98
|
}
|
|
99
|
+
/**
|
|
100
|
+
* Log Safety: UNSAFE
|
|
101
|
+
*/
|
|
102
|
+
export interface ListModelStudioConfigVersionsResponse {
|
|
103
|
+
data: Array<ModelStudioConfigVersion>;
|
|
104
|
+
nextPageToken?: _Core.PageToken;
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* Log Safety: UNSAFE
|
|
108
|
+
*/
|
|
109
|
+
export interface ListModelStudioRunsResponse {
|
|
110
|
+
data: Array<ModelStudioRun>;
|
|
111
|
+
nextPageToken?: _Core.PageToken;
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* Log Safety: UNSAFE
|
|
115
|
+
*/
|
|
116
|
+
export interface ListModelStudioTrainersResponse {
|
|
117
|
+
data: Array<ModelStudioTrainer>;
|
|
118
|
+
nextPageToken?: _Core.PageToken;
|
|
119
|
+
}
|
|
53
120
|
/**
|
|
54
121
|
* Log Safety: UNSAFE
|
|
55
122
|
*/
|
|
@@ -185,12 +252,154 @@ export type ModelFiles = {
|
|
|
185
252
|
* Log Safety: UNSAFE
|
|
186
253
|
*/
|
|
187
254
|
export type ModelName = LooselyBrandedString<"ModelName">;
|
|
255
|
+
/**
|
|
256
|
+
* Model output configuration.
|
|
257
|
+
*
|
|
258
|
+
* Log Safety: SAFE
|
|
259
|
+
*/
|
|
260
|
+
export interface ModelOutput {
|
|
261
|
+
modelRid: string;
|
|
262
|
+
}
|
|
188
263
|
/**
|
|
189
264
|
* The Resource Identifier (RID) of a Model.
|
|
190
265
|
*
|
|
191
266
|
* Log Safety: SAFE
|
|
192
267
|
*/
|
|
193
268
|
export type ModelRid = LooselyBrandedString<"ModelRid">;
|
|
269
|
+
/**
|
|
270
|
+
* Log Safety: SAFE
|
|
271
|
+
*/
|
|
272
|
+
export interface ModelStudio {
|
|
273
|
+
rid: ModelStudioRid;
|
|
274
|
+
folderRid: _Filesystem.FolderRid;
|
|
275
|
+
createdTime: _Core.CreatedTime;
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* The Resource Identifier (RID) of a Model Studio Configuration.
|
|
279
|
+
*
|
|
280
|
+
* Log Safety: SAFE
|
|
281
|
+
*/
|
|
282
|
+
export type ModelStudioConfigRid = LooselyBrandedString<"ModelStudioConfigRid">;
|
|
283
|
+
/**
|
|
284
|
+
* Log Safety: UNSAFE
|
|
285
|
+
*/
|
|
286
|
+
export interface ModelStudioConfigVersion {
|
|
287
|
+
name: ModelStudioConfigVersionName;
|
|
288
|
+
version: ModelStudioConfigVersionNumber;
|
|
289
|
+
trainerId: TrainerId;
|
|
290
|
+
trainer: TrainerVersionLocator;
|
|
291
|
+
workerConfig: ModelStudioWorkerConfig;
|
|
292
|
+
resources: ResourceConfiguration;
|
|
293
|
+
changelog?: string;
|
|
294
|
+
createdBy: _Core.CreatedBy;
|
|
295
|
+
createdTime: _Core.CreatedTime;
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* Human readable name of the configuration version and experiment.
|
|
299
|
+
*
|
|
300
|
+
* Log Safety: UNSAFE
|
|
301
|
+
*/
|
|
302
|
+
export type ModelStudioConfigVersionName = LooselyBrandedString<"ModelStudioConfigVersionName">;
|
|
303
|
+
/**
|
|
304
|
+
* The version number of a Model Studio Configuration.
|
|
305
|
+
*
|
|
306
|
+
* Log Safety: SAFE
|
|
307
|
+
*/
|
|
308
|
+
export type ModelStudioConfigVersionNumber = number;
|
|
309
|
+
/**
|
|
310
|
+
* Input specification for a Model Studio configuration.
|
|
311
|
+
*
|
|
312
|
+
* Log Safety: UNSAFE
|
|
313
|
+
*/
|
|
314
|
+
export type ModelStudioInput = {
|
|
315
|
+
type: "dataset";
|
|
316
|
+
} & DatasetInput;
|
|
317
|
+
/**
|
|
318
|
+
* Output specification for a Model Studio configuration.
|
|
319
|
+
*
|
|
320
|
+
* Log Safety: SAFE
|
|
321
|
+
*/
|
|
322
|
+
export type ModelStudioOutput = {
|
|
323
|
+
type: "model";
|
|
324
|
+
} & ModelOutput;
|
|
325
|
+
/**
|
|
326
|
+
* The Resource Identifier (RID) of a Model Studio.
|
|
327
|
+
*
|
|
328
|
+
* Log Safety: SAFE
|
|
329
|
+
*/
|
|
330
|
+
export type ModelStudioRid = LooselyBrandedString<"ModelStudioRid">;
|
|
331
|
+
/**
|
|
332
|
+
* Log Safety: UNSAFE
|
|
333
|
+
*/
|
|
334
|
+
export interface ModelStudioRun {
|
|
335
|
+
runId: RunId;
|
|
336
|
+
buildRid: ModelStudioRunBuildRid;
|
|
337
|
+
jobRid: ModelStudioRunJobRid;
|
|
338
|
+
configVersion: ModelStudioConfigVersionNumber;
|
|
339
|
+
startedBy: _Core.CreatedBy;
|
|
340
|
+
startedTime: _Core.CreatedTime;
|
|
341
|
+
resolvedOutputs: Record<OutputAlias, ModelStudioRunOutput>;
|
|
342
|
+
}
|
|
343
|
+
/**
|
|
344
|
+
* The RID of the build associated with this run.
|
|
345
|
+
*
|
|
346
|
+
* Log Safety: SAFE
|
|
347
|
+
*/
|
|
348
|
+
export type ModelStudioRunBuildRid = LooselyBrandedString<"ModelStudioRunBuildRid">;
|
|
349
|
+
/**
|
|
350
|
+
* The RID of the job associated with this run.
|
|
351
|
+
*
|
|
352
|
+
* Log Safety: SAFE
|
|
353
|
+
*/
|
|
354
|
+
export type ModelStudioRunJobRid = LooselyBrandedString<"ModelStudioRunJobRid">;
|
|
355
|
+
/**
|
|
356
|
+
* Resolved model output details for a Model Studio run.
|
|
357
|
+
*
|
|
358
|
+
* Log Safety: SAFE
|
|
359
|
+
*/
|
|
360
|
+
export interface ModelStudioRunModelOutput {
|
|
361
|
+
modelRid: string;
|
|
362
|
+
modelVersionRid: string;
|
|
363
|
+
experimentRid?: string;
|
|
364
|
+
}
|
|
365
|
+
/**
|
|
366
|
+
* Resolved output details for a Model Studio run.
|
|
367
|
+
*
|
|
368
|
+
* Log Safety: SAFE
|
|
369
|
+
*/
|
|
370
|
+
export type ModelStudioRunOutput = {
|
|
371
|
+
type: "model";
|
|
372
|
+
} & ModelStudioRunModelOutput;
|
|
373
|
+
/**
|
|
374
|
+
* Log Safety: UNSAFE
|
|
375
|
+
*/
|
|
376
|
+
export interface ModelStudioTrainer {
|
|
377
|
+
trainerId: TrainerId;
|
|
378
|
+
version: TrainerVersion;
|
|
379
|
+
name: TrainerName;
|
|
380
|
+
type: TrainerType;
|
|
381
|
+
description: TrainerDescription;
|
|
382
|
+
customConfigSchema: TrainerSchemaDefinition;
|
|
383
|
+
inputs: TrainerInputsSpecification;
|
|
384
|
+
outputs: TrainerOutputsSpecification;
|
|
385
|
+
experimental: ModelStudioTrainerExperimental;
|
|
386
|
+
}
|
|
387
|
+
/**
|
|
388
|
+
* Whether this trainer is experimental and may have breaking changes.
|
|
389
|
+
*
|
|
390
|
+
* Log Safety: SAFE
|
|
391
|
+
*/
|
|
392
|
+
export type ModelStudioTrainerExperimental = boolean;
|
|
393
|
+
/**
|
|
394
|
+
* Configuration for the Model Studio worker.
|
|
395
|
+
*
|
|
396
|
+
* Log Safety: UNSAFE
|
|
397
|
+
*/
|
|
398
|
+
export interface ModelStudioWorkerConfig {
|
|
399
|
+
customConfig?: Record<string, any>;
|
|
400
|
+
inputs: Record<InputAlias, ModelStudioInput>;
|
|
401
|
+
outputs: Record<OutputAlias, ModelStudioOutput>;
|
|
402
|
+
}
|
|
194
403
|
/**
|
|
195
404
|
* Log Safety: UNSAFE
|
|
196
405
|
*/
|
|
@@ -206,6 +415,27 @@ export interface ModelVersion {
|
|
|
206
415
|
* Log Safety: SAFE
|
|
207
416
|
*/
|
|
208
417
|
export type ModelVersionRid = LooselyBrandedString<"ModelVersionRid">;
|
|
418
|
+
/**
|
|
419
|
+
* A string alias used to identify outputs in a Model Studio configuration.
|
|
420
|
+
*
|
|
421
|
+
* Log Safety: UNSAFE
|
|
422
|
+
*/
|
|
423
|
+
export type OutputAlias = LooselyBrandedString<"OutputAlias">;
|
|
424
|
+
/**
|
|
425
|
+
* Compute resource configuration for training runs.
|
|
426
|
+
*
|
|
427
|
+
* Log Safety: SAFE
|
|
428
|
+
*/
|
|
429
|
+
export interface ResourceConfiguration {
|
|
430
|
+
memory: string;
|
|
431
|
+
cpu: string;
|
|
432
|
+
}
|
|
433
|
+
/**
|
|
434
|
+
* A unique identifier for a Model Studio run, derived from the studio, config, and build.
|
|
435
|
+
*
|
|
436
|
+
* Log Safety: SAFE
|
|
437
|
+
*/
|
|
438
|
+
export type RunId = LooselyBrandedString<"RunId">;
|
|
209
439
|
/**
|
|
210
440
|
* Log Safety: SAFE
|
|
211
441
|
*/
|
|
@@ -216,6 +446,63 @@ export interface StringType {
|
|
|
216
446
|
*/
|
|
217
447
|
export interface TimestampType {
|
|
218
448
|
}
|
|
449
|
+
/**
|
|
450
|
+
* Description of what a trainer does and its capabilities.
|
|
451
|
+
*
|
|
452
|
+
* Log Safety: UNSAFE
|
|
453
|
+
*/
|
|
454
|
+
export type TrainerDescription = LooselyBrandedString<"TrainerDescription">;
|
|
455
|
+
/**
|
|
456
|
+
* The identifier for a trainer.
|
|
457
|
+
*
|
|
458
|
+
* Log Safety: UNSAFE
|
|
459
|
+
*/
|
|
460
|
+
export type TrainerId = LooselyBrandedString<"TrainerId">;
|
|
461
|
+
/**
|
|
462
|
+
* Specification of the inputs required by a trainer. When creating a ModelStudioConfigVersion, the workerConfig.inputs must conform to this specification, providing entries for each required input defined here.
|
|
463
|
+
*
|
|
464
|
+
* Log Safety: UNSAFE
|
|
465
|
+
*/
|
|
466
|
+
export type TrainerInputsSpecification = any;
|
|
467
|
+
/**
|
|
468
|
+
* Human-readable name of a trainer.
|
|
469
|
+
*
|
|
470
|
+
* Log Safety: UNSAFE
|
|
471
|
+
*/
|
|
472
|
+
export type TrainerName = LooselyBrandedString<"TrainerName">;
|
|
473
|
+
/**
|
|
474
|
+
* Specification of the outputs produced by a trainer. When creating a ModelStudioConfigVersion, the workerConfig.outputs must conform to this specification, providing entries for each required output defined here.
|
|
475
|
+
*
|
|
476
|
+
* Log Safety: UNSAFE
|
|
477
|
+
*/
|
|
478
|
+
export type TrainerOutputsSpecification = any;
|
|
479
|
+
/**
|
|
480
|
+
* JSON schema defining the custom configuration parameters for a trainer.
|
|
481
|
+
*
|
|
482
|
+
* Log Safety: UNSAFE
|
|
483
|
+
*/
|
|
484
|
+
export type TrainerSchemaDefinition = any;
|
|
485
|
+
/**
|
|
486
|
+
* The type/category of a trainer.
|
|
487
|
+
*
|
|
488
|
+
* Log Safety: UNSAFE
|
|
489
|
+
*/
|
|
490
|
+
export type TrainerType = LooselyBrandedString<"TrainerType">;
|
|
491
|
+
/**
|
|
492
|
+
* A specific version identifier for a trainer.
|
|
493
|
+
*
|
|
494
|
+
* Log Safety: SAFE
|
|
495
|
+
*/
|
|
496
|
+
export type TrainerVersion = LooselyBrandedString<"TrainerVersion">;
|
|
497
|
+
/**
|
|
498
|
+
* Identifies a specific version of a trainer.
|
|
499
|
+
*
|
|
500
|
+
* Log Safety: UNSAFE
|
|
501
|
+
*/
|
|
502
|
+
export interface TrainerVersionLocator {
|
|
503
|
+
trainerId: TrainerId;
|
|
504
|
+
version: string;
|
|
505
|
+
}
|
|
219
506
|
/**
|
|
220
507
|
* Log Safety: UNSAFE
|
|
221
508
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"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"}
|
package/build/esm/_errors.d.ts
CHANGED
|
@@ -16,6 +16,21 @@ export interface CondaSolveFailureForProvidedPackages {
|
|
|
16
16
|
errorMessage: unknown;
|
|
17
17
|
};
|
|
18
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* The provided configuration is invalid.
|
|
21
|
+
*
|
|
22
|
+
* Log Safety: UNSAFE
|
|
23
|
+
*/
|
|
24
|
+
export interface CreateConfigValidationError {
|
|
25
|
+
errorCode: "INVALID_ARGUMENT";
|
|
26
|
+
errorName: "CreateConfigValidationError";
|
|
27
|
+
errorDescription: "The provided configuration is invalid.";
|
|
28
|
+
errorInstanceId: string;
|
|
29
|
+
parameters: {
|
|
30
|
+
studioRid: unknown;
|
|
31
|
+
validationFailures: unknown;
|
|
32
|
+
};
|
|
33
|
+
}
|
|
19
34
|
/**
|
|
20
35
|
* Could not create the Model.
|
|
21
36
|
*
|
|
@@ -28,6 +43,32 @@ export interface CreateModelPermissionDenied {
|
|
|
28
43
|
errorInstanceId: string;
|
|
29
44
|
parameters: {};
|
|
30
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* Could not create the ModelStudioConfigVersion.
|
|
48
|
+
*
|
|
49
|
+
* Log Safety: SAFE
|
|
50
|
+
*/
|
|
51
|
+
export interface CreateModelStudioConfigVersionPermissionDenied {
|
|
52
|
+
errorCode: "PERMISSION_DENIED";
|
|
53
|
+
errorName: "CreateModelStudioConfigVersionPermissionDenied";
|
|
54
|
+
errorDescription: "Could not create the ModelStudioConfigVersion.";
|
|
55
|
+
errorInstanceId: string;
|
|
56
|
+
parameters: {
|
|
57
|
+
modelStudioRid: unknown;
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* Permission denied to create a Model Studio.
|
|
62
|
+
*
|
|
63
|
+
* Log Safety: SAFE
|
|
64
|
+
*/
|
|
65
|
+
export interface CreateModelStudioPermissionDenied {
|
|
66
|
+
errorCode: "PERMISSION_DENIED";
|
|
67
|
+
errorName: "CreateModelStudioPermissionDenied";
|
|
68
|
+
errorDescription: "Permission denied to create a Model Studio.";
|
|
69
|
+
errorInstanceId: string;
|
|
70
|
+
parameters: {};
|
|
71
|
+
}
|
|
31
72
|
/**
|
|
32
73
|
* Could not create the ModelVersion.
|
|
33
74
|
*
|
|
@@ -57,6 +98,46 @@ export interface InvalidModelApi {
|
|
|
57
98
|
message: unknown;
|
|
58
99
|
};
|
|
59
100
|
}
|
|
101
|
+
/**
|
|
102
|
+
* The request to create a Model Studio contains invalid arguments.
|
|
103
|
+
*
|
|
104
|
+
* Log Safety: SAFE
|
|
105
|
+
*/
|
|
106
|
+
export interface InvalidModelStudioCreateRequest {
|
|
107
|
+
errorCode: "INVALID_ARGUMENT";
|
|
108
|
+
errorName: "InvalidModelStudioCreateRequest";
|
|
109
|
+
errorDescription: "The request to create a Model Studio contains invalid arguments.";
|
|
110
|
+
errorInstanceId: string;
|
|
111
|
+
parameters: {};
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* Could not latest the ModelStudioConfigVersion.
|
|
115
|
+
*
|
|
116
|
+
* Log Safety: SAFE
|
|
117
|
+
*/
|
|
118
|
+
export interface LatestModelStudioConfigVersionsPermissionDenied {
|
|
119
|
+
errorCode: "PERMISSION_DENIED";
|
|
120
|
+
errorName: "LatestModelStudioConfigVersionsPermissionDenied";
|
|
121
|
+
errorDescription: "Could not latest the ModelStudioConfigVersion.";
|
|
122
|
+
errorInstanceId: string;
|
|
123
|
+
parameters: {
|
|
124
|
+
modelStudioRid: unknown;
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* Permission denied to launch a Model Studio run.
|
|
129
|
+
*
|
|
130
|
+
* Log Safety: SAFE
|
|
131
|
+
*/
|
|
132
|
+
export interface LaunchModelStudioPermissionDenied {
|
|
133
|
+
errorCode: "PERMISSION_DENIED";
|
|
134
|
+
errorName: "LaunchModelStudioPermissionDenied";
|
|
135
|
+
errorDescription: "Permission denied to launch a Model Studio run.";
|
|
136
|
+
errorInstanceId: string;
|
|
137
|
+
parameters: {
|
|
138
|
+
studioRid: unknown;
|
|
139
|
+
};
|
|
140
|
+
}
|
|
60
141
|
/**
|
|
61
142
|
* The given Model could not be found.
|
|
62
143
|
*
|
|
@@ -71,6 +152,49 @@ export interface ModelNotFound {
|
|
|
71
152
|
modelRid: unknown;
|
|
72
153
|
};
|
|
73
154
|
}
|
|
155
|
+
/**
|
|
156
|
+
* The requested Model Studio configuration version was not found.
|
|
157
|
+
*
|
|
158
|
+
* Log Safety: SAFE
|
|
159
|
+
*/
|
|
160
|
+
export interface ModelStudioConfigVersionNotFound {
|
|
161
|
+
errorCode: "NOT_FOUND";
|
|
162
|
+
errorName: "ModelStudioConfigVersionNotFound";
|
|
163
|
+
errorDescription: "The requested Model Studio configuration version was not found.";
|
|
164
|
+
errorInstanceId: string;
|
|
165
|
+
parameters: {
|
|
166
|
+
studioRid: unknown;
|
|
167
|
+
configVersion: unknown;
|
|
168
|
+
};
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* The requested Model Studio was not found.
|
|
172
|
+
*
|
|
173
|
+
* Log Safety: SAFE
|
|
174
|
+
*/
|
|
175
|
+
export interface ModelStudioNotFound {
|
|
176
|
+
errorCode: "NOT_FOUND";
|
|
177
|
+
errorName: "ModelStudioNotFound";
|
|
178
|
+
errorDescription: "The requested Model Studio was not found.";
|
|
179
|
+
errorInstanceId: string;
|
|
180
|
+
parameters: {
|
|
181
|
+
studioRid: unknown;
|
|
182
|
+
};
|
|
183
|
+
}
|
|
184
|
+
/**
|
|
185
|
+
* The given ModelStudioTrainer could not be found.
|
|
186
|
+
*
|
|
187
|
+
* Log Safety: UNSAFE
|
|
188
|
+
*/
|
|
189
|
+
export interface ModelStudioTrainerNotFound {
|
|
190
|
+
errorCode: "NOT_FOUND";
|
|
191
|
+
errorName: "ModelStudioTrainerNotFound";
|
|
192
|
+
errorDescription: "The given ModelStudioTrainer could not be found.";
|
|
193
|
+
errorInstanceId: string;
|
|
194
|
+
parameters: {
|
|
195
|
+
modelStudioTrainerTrainerId: unknown;
|
|
196
|
+
};
|
|
197
|
+
}
|
|
74
198
|
/**
|
|
75
199
|
* The given ModelVersion could not be found.
|
|
76
200
|
*
|
|
@@ -86,4 +210,18 @@ export interface ModelVersionNotFound {
|
|
|
86
210
|
modelVersionRid: unknown;
|
|
87
211
|
};
|
|
88
212
|
}
|
|
213
|
+
/**
|
|
214
|
+
* The specified trainer does not exist.
|
|
215
|
+
*
|
|
216
|
+
* Log Safety: UNSAFE
|
|
217
|
+
*/
|
|
218
|
+
export interface TrainerNotFound {
|
|
219
|
+
errorCode: "NOT_FOUND";
|
|
220
|
+
errorName: "TrainerNotFound";
|
|
221
|
+
errorDescription: "The specified trainer does not exist.";
|
|
222
|
+
errorInstanceId: string;
|
|
223
|
+
parameters: {
|
|
224
|
+
trainerId: unknown;
|
|
225
|
+
};
|
|
226
|
+
}
|
|
89
227
|
//# sourceMappingURL=_errors.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,oCAAoC;IACnD,SAAS,EAAE,kBAAkB,CAAC;IAC9B,SAAS,EAAE,sCAAsC,CAAC;IAClD,gBAAgB,EACd,gEAAgE,CAAC;IACnE,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,SAAS,EAAE,OAAO,CAAC;QACnB,YAAY,EAAE,OAAO,CAAC;KACvB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IAC1C,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,6BAA6B,CAAC;IACzC,gBAAgB,EAAE,6BAA6B,CAAC;IAChD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,EAAE,CAAC;CAChB;AAED;;;;GAIG;AACH,MAAM,WAAW,kCAAkC;IACjD,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,oCAAoC,CAAC;IAChD,gBAAgB,EAAE,oCAAoC,CAAC;IACvD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,QAAQ,EAAE,OAAO,CAAC;KACnB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B,SAAS,EAAE,kBAAkB,CAAC;IAC9B,SAAS,EAAE,iBAAiB,CAAC;IAC7B,gBAAgB,EAAE,kCAAkC,CAAC;IACrD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,SAAS,EAAE,OAAO,CAAC;QACnB,OAAO,EAAE,OAAO,CAAC;KAClB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC5B,SAAS,EAAE,WAAW,CAAC;IACvB,SAAS,EAAE,eAAe,CAAC;IAC3B,gBAAgB,EAAE,qCAAqC,CAAC;IACxD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,QAAQ,EAAE,OAAO,CAAC;KACnB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACnC,SAAS,EAAE,WAAW,CAAC;IACvB,SAAS,EAAE,sBAAsB,CAAC;IAClC,gBAAgB,EAAE,4CAA4C,CAAC;IAC/D,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,QAAQ,EAAE,OAAO,CAAC;QAClB,eAAe,EAAE,OAAO,CAAC;KAC1B,CAAC;CACH"}
|
|
1
|
+
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"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"}
|
package/build/esm/index.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
export type { BooleanType, CreateModelRequest, CreateModelVersionRequest, DateType, DillModelFiles, DoubleType, FloatType, IntegerType, ListModelVersionsResponse, LongType, Model, ModelApi, ModelApiAnyType, ModelApiArrayType, ModelApiColumn, ModelApiDataType, ModelApiInput, ModelApiMapType, ModelApiOutput, ModelApiParameterType, ModelApiTabularFormat, ModelApiTabularType, ModelFiles, ModelName, ModelRid, ModelVersion, ModelVersionRid, StringType, TimestampType, UnsupportedType, UnsupportedTypeParamValue, } from "./_components.js";
|
|
2
|
-
export type { CondaSolveFailureForProvidedPackages, CreateModelPermissionDenied, CreateModelVersionPermissionDenied, InvalidModelApi, ModelNotFound, ModelVersionNotFound, } from "./_errors.js";
|
|
1
|
+
export type { BooleanType, ColumnName, ColumnTypeSpecId, CreateModelRequest, CreateModelStudioConfigVersionRequest, CreateModelStudioRequest, CreateModelVersionRequest, DatasetInput, DateType, DillModelFiles, DoubleType, FloatType, InputAlias, IntegerType, ListModelStudioConfigVersionsResponse, ListModelStudioRunsResponse, ListModelStudioTrainersResponse, ListModelVersionsResponse, LongType, Model, ModelApi, ModelApiAnyType, ModelApiArrayType, ModelApiColumn, ModelApiDataType, ModelApiInput, ModelApiMapType, ModelApiOutput, ModelApiParameterType, ModelApiTabularFormat, ModelApiTabularType, ModelFiles, ModelName, ModelOutput, ModelRid, ModelStudio, ModelStudioConfigRid, ModelStudioConfigVersion, ModelStudioConfigVersionName, ModelStudioConfigVersionNumber, ModelStudioInput, ModelStudioOutput, ModelStudioRid, ModelStudioRun, ModelStudioRunBuildRid, ModelStudioRunJobRid, ModelStudioRunModelOutput, ModelStudioRunOutput, ModelStudioTrainer, ModelStudioTrainerExperimental, ModelStudioWorkerConfig, ModelVersion, ModelVersionRid, OutputAlias, ResourceConfiguration, RunId, StringType, TimestampType, TrainerDescription, TrainerId, TrainerInputsSpecification, TrainerName, TrainerOutputsSpecification, TrainerSchemaDefinition, TrainerType, TrainerVersion, TrainerVersionLocator, UnsupportedType, UnsupportedTypeParamValue, } from "./_components.js";
|
|
2
|
+
export type { CondaSolveFailureForProvidedPackages, CreateConfigValidationError, CreateModelPermissionDenied, CreateModelStudioConfigVersionPermissionDenied, CreateModelStudioPermissionDenied, CreateModelVersionPermissionDenied, InvalidModelApi, InvalidModelStudioCreateRequest, LatestModelStudioConfigVersionsPermissionDenied, LaunchModelStudioPermissionDenied, ModelNotFound, ModelStudioConfigVersionNotFound, ModelStudioNotFound, ModelStudioTrainerNotFound, ModelVersionNotFound, TrainerNotFound, } from "./_errors.js";
|
|
3
3
|
export * as Models from "./public/Model.js";
|
|
4
|
+
export * as ModelStudios from "./public/ModelStudio.js";
|
|
5
|
+
export * as ModelStudioConfigVersions from "./public/ModelStudioConfigVersion.js";
|
|
6
|
+
export * as ModelStudioRuns from "./public/ModelStudioRun.js";
|
|
7
|
+
export * as ModelStudioTrainers from "./public/ModelStudioTrainer.js";
|
|
4
8
|
export * as ModelVersions from "./public/ModelVersion.js";
|
|
5
9
|
//# sourceMappingURL=index.d.ts.map
|
package/build/esm/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,WAAW,EACX,kBAAkB,EAClB,yBAAyB,EACzB,QAAQ,EACR,cAAc,EACd,UAAU,EACV,SAAS,EACT,WAAW,EACX,yBAAyB,EACzB,QAAQ,EACR,KAAK,EACL,QAAQ,EACR,eAAe,EACf,iBAAiB,EACjB,cAAc,EACd,gBAAgB,EAChB,aAAa,EACb,eAAe,EACf,cAAc,EACd,qBAAqB,EACrB,qBAAqB,EACrB,mBAAmB,EACnB,UAAU,EACV,SAAS,EACT,QAAQ,EACR,YAAY,EACZ,eAAe,EACf,UAAU,EACV,aAAa,EACb,eAAe,EACf,yBAAyB,GAC1B,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EACV,oCAAoC,EACpC,2BAA2B,EAC3B,kCAAkC,EAClC,eAAe,EACf,aAAa,EACb,oBAAoB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,WAAW,EACX,UAAU,EACV,gBAAgB,EAChB,kBAAkB,EAClB,qCAAqC,EACrC,wBAAwB,EACxB,yBAAyB,EACzB,YAAY,EACZ,QAAQ,EACR,cAAc,EACd,UAAU,EACV,SAAS,EACT,UAAU,EACV,WAAW,EACX,qCAAqC,EACrC,2BAA2B,EAC3B,+BAA+B,EAC/B,yBAAyB,EACzB,QAAQ,EACR,KAAK,EACL,QAAQ,EACR,eAAe,EACf,iBAAiB,EACjB,cAAc,EACd,gBAAgB,EAChB,aAAa,EACb,eAAe,EACf,cAAc,EACd,qBAAqB,EACrB,qBAAqB,EACrB,mBAAmB,EACnB,UAAU,EACV,SAAS,EACT,WAAW,EACX,QAAQ,EACR,WAAW,EACX,oBAAoB,EACpB,wBAAwB,EACxB,4BAA4B,EAC5B,8BAA8B,EAC9B,gBAAgB,EAChB,iBAAiB,EACjB,cAAc,EACd,cAAc,EACd,sBAAsB,EACtB,oBAAoB,EACpB,yBAAyB,EACzB,oBAAoB,EACpB,kBAAkB,EAClB,8BAA8B,EAC9B,uBAAuB,EACvB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,qBAAqB,EACrB,KAAK,EACL,UAAU,EACV,aAAa,EACb,kBAAkB,EAClB,SAAS,EACT,0BAA0B,EAC1B,WAAW,EACX,2BAA2B,EAC3B,uBAAuB,EACvB,WAAW,EACX,cAAc,EACd,qBAAqB,EACrB,eAAe,EACf,yBAAyB,GAC1B,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EACV,oCAAoC,EACpC,2BAA2B,EAC3B,2BAA2B,EAC3B,8CAA8C,EAC9C,iCAAiC,EACjC,kCAAkC,EAClC,eAAe,EACf,+BAA+B,EAC/B,+CAA+C,EAC/C,iCAAiC,EACjC,aAAa,EACb,gCAAgC,EAChC,mBAAmB,EACnB,0BAA0B,EAC1B,oBAAoB,EACpB,eAAe,GAChB,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,YAAY,MAAM,yBAAyB,CAAC;AACxD,OAAO,KAAK,yBAAyB,MAAM,sCAAsC,CAAC;AAClF,OAAO,KAAK,eAAe,MAAM,4BAA4B,CAAC;AAC9D,OAAO,KAAK,mBAAmB,MAAM,gCAAgC,CAAC;AACtE,OAAO,KAAK,aAAa,MAAM,0BAA0B,CAAC"}
|
package/build/esm/index.js
CHANGED
|
@@ -14,5 +14,9 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
export * as Models from "./public/Model.js";
|
|
17
|
+
export * as ModelStudios from "./public/ModelStudio.js";
|
|
18
|
+
export * as ModelStudioConfigVersions from "./public/ModelStudioConfigVersion.js";
|
|
19
|
+
export * as ModelStudioRuns from "./public/ModelStudioRun.js";
|
|
20
|
+
export * as ModelStudioTrainers from "./public/ModelStudioTrainer.js";
|
|
17
21
|
export * as ModelVersions from "./public/ModelVersion.js";
|
|
18
22
|
//# sourceMappingURL=index.js.map
|
package/build/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["Models","ModelVersions"],"sources":["index.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * as Models from \"./public/Model.js\";\nexport * as ModelVersions from \"./public/ModelVersion.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,KAAKA,MAAM,MAAM,mBAAmB;AAC3C,OAAO,KAAKC,aAAa,MAAM,0BAA0B","ignoreList":[]}
|
|
1
|
+
{"version":3,"file":"index.js","names":["Models","ModelStudios","ModelStudioConfigVersions","ModelStudioRuns","ModelStudioTrainers","ModelVersions"],"sources":["index.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * as Models from \"./public/Model.js\";\nexport * as ModelStudios from \"./public/ModelStudio.js\";\nexport * as ModelStudioConfigVersions from \"./public/ModelStudioConfigVersion.js\";\nexport * as ModelStudioRuns from \"./public/ModelStudioRun.js\";\nexport * as ModelStudioTrainers from \"./public/ModelStudioTrainer.js\";\nexport * as ModelVersions from \"./public/ModelVersion.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,KAAKA,MAAM,MAAM,mBAAmB;AAC3C,OAAO,KAAKC,YAAY,MAAM,yBAAyB;AACvD,OAAO,KAAKC,yBAAyB,MAAM,sCAAsC;AACjF,OAAO,KAAKC,eAAe,MAAM,4BAA4B;AAC7D,OAAO,KAAKC,mBAAmB,MAAM,gCAAgC;AACrE,OAAO,KAAKC,aAAa,MAAM,0BAA0B","ignoreList":[]}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type * as _Core from "@osdk/foundry.core";
|
|
2
|
+
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
|
+
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
|
+
import type * as _Models from "../_components.js";
|
|
5
|
+
/**
|
|
6
|
+
* Creates a new Model Studio.
|
|
7
|
+
*
|
|
8
|
+
* @alpha
|
|
9
|
+
*
|
|
10
|
+
* Required Scopes: [api:models-write]
|
|
11
|
+
* URL: /v2/models/modelStudios
|
|
12
|
+
*/
|
|
13
|
+
export declare function create($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
14
|
+
$body: _Models.CreateModelStudioRequest,
|
|
15
|
+
$queryParams?: {
|
|
16
|
+
preview?: _Core.PreviewMode | undefined;
|
|
17
|
+
}
|
|
18
|
+
]): Promise<_Models.ModelStudio>;
|
|
19
|
+
/**
|
|
20
|
+
* Gets details about a Model Studio by its RID.
|
|
21
|
+
*
|
|
22
|
+
* @alpha
|
|
23
|
+
*
|
|
24
|
+
* Required Scopes: [api:models-read]
|
|
25
|
+
* URL: /v2/models/modelStudios/{modelStudioRid}
|
|
26
|
+
*/
|
|
27
|
+
export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
28
|
+
modelStudioRid: _Models.ModelStudioRid,
|
|
29
|
+
$queryParams?: {
|
|
30
|
+
preview?: _Core.PreviewMode | undefined;
|
|
31
|
+
}
|
|
32
|
+
]): Promise<_Models.ModelStudio>;
|
|
33
|
+
/**
|
|
34
|
+
* Launches a new training run for the Model Studio using the latest configuration version.
|
|
35
|
+
*
|
|
36
|
+
* @alpha
|
|
37
|
+
*
|
|
38
|
+
* Required Scopes: [api:models-write]
|
|
39
|
+
* URL: /v2/models/modelStudios/{modelStudioRid}/launch
|
|
40
|
+
*/
|
|
41
|
+
export declare function launch($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
42
|
+
modelStudioRid: _Models.ModelStudioRid,
|
|
43
|
+
$queryParams?: {
|
|
44
|
+
preview?: _Core.PreviewMode | undefined;
|
|
45
|
+
}
|
|
46
|
+
]): Promise<_Models.ModelStudioRun>;
|
|
47
|
+
//# sourceMappingURL=ModelStudio.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ModelStudio.d.ts","sourceRoot":"","sources":["../../../src/public/ModelStudio.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAG9B,OAAO,KAAK,KAAK,OAAO,MAAM,mBAAmB,CAAC;AAWlD;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,KAAK,EAAE,OAAO,CAAC,wBAAwB;IACvC,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,CAE9B;AASD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,cAAc,EAAE,OAAO,CAAC,cAAc;IAEtC,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,CAE9B;AASD;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,cAAc,EAAE,OAAO,CAAC,cAAc;IAEtC,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,OAAO,CAAC,cAAc,CAAC,CAEjC"}
|