edge-impulse-api 1.93.15 → 1.93.17
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/build/browser/edge-impulse-api.d.ts +22 -8
- package/build/browser/edge-impulse-api.js +14 -6
- package/build/browser/edge-impulse-api.js.map +1 -1
- package/build/library/sdk/api/vlmApi.d.ts +2 -2
- package/build/library/sdk/api/vlmApi.js +1 -1
- package/build/library/sdk/api/vlmApi.js.map +1 -1
- package/build/library/sdk/model/models.d.ts +1 -0
- package/build/library/sdk/model/models.js +1 -0
- package/build/library/sdk/model/models.js.map +1 -1
- package/build/library/sdk/model/organizationCreateProject.d.ts +1 -1
- package/build/library/sdk/model/organizationCreateProject.js +1 -1
- package/build/library/sdk/model/organizationCreateProject.js.map +1 -1
- package/build/library/sdk/model/organizationCreateProjectRequest.d.ts +1 -1
- package/build/library/sdk/model/organizationCreateProjectRequest.js +1 -1
- package/build/library/sdk/model/organizationCreateProjectRequest.js.map +1 -1
- package/build/library/sdk/model/organizationCreateProjectWithFiles.d.ts +1 -1
- package/build/library/sdk/model/organizationCreateProjectWithFiles.js +1 -1
- package/build/library/sdk/model/organizationCreateProjectWithFiles.js.map +1 -1
- package/build/library/sdk/model/organizationPipelineRunStep.d.ts +1 -1
- package/build/library/sdk/model/organizationPipelineRunStep.js +1 -1
- package/build/library/sdk/model/organizationPipelineRunStep.js.map +1 -1
- package/build/library/sdk/model/organizationPipelineStep.d.ts +1 -1
- package/build/library/sdk/model/organizationPipelineStep.js +1 -1
- package/build/library/sdk/model/organizationPipelineStep.js.map +1 -1
- package/build/library/sdk/model/startVlmInferenceJobResponse.d.ts +12 -0
- package/build/library/sdk/model/startVlmInferenceJobResponse.js +4 -0
- package/build/library/sdk/model/startVlmInferenceJobResponse.js.map +1 -0
- package/build/library/sdk/model/vlmInferenceResultsResults.d.ts +2 -2
- package/package.json +1 -1
|
@@ -11395,7 +11395,7 @@ export class VlmApi {
|
|
|
11395
11395
|
headers: {
|
|
11396
11396
|
[name: string]: string;
|
|
11397
11397
|
};
|
|
11398
|
-
}): Promise<
|
|
11398
|
+
}): Promise<StartVlmInferenceJobResponse>;
|
|
11399
11399
|
/**
|
|
11400
11400
|
* Initializes the inference worker, speeding it up for subsequent requests.
|
|
11401
11401
|
* @summary Warm up a given VLM model
|
|
@@ -22285,7 +22285,7 @@ export type OrganizationCreateProject = {
|
|
|
22285
22285
|
};
|
|
22286
22286
|
export type OrganizationCreateProjectUploadTypeEnum = 'dataset' | 'project';
|
|
22287
22287
|
export const OrganizationCreateProjectUploadTypeEnumValues: string[];
|
|
22288
|
-
export type OrganizationCreateProjectCategoryEnum = 'training' | 'testing' | 'split';
|
|
22288
|
+
export type OrganizationCreateProjectCategoryEnum = 'training' | 'validation' | 'testing' | 'split';
|
|
22289
22289
|
export const OrganizationCreateProjectCategoryEnumValues: string[];
|
|
22290
22290
|
|
|
22291
22291
|
|
|
@@ -22369,7 +22369,7 @@ export type OrganizationCreateProjectRequest = {
|
|
|
22369
22369
|
};
|
|
22370
22370
|
export type OrganizationCreateProjectRequestUploadTypeEnum = 'project' | 'dataset';
|
|
22371
22371
|
export const OrganizationCreateProjectRequestUploadTypeEnumValues: string[];
|
|
22372
|
-
export type OrganizationCreateProjectRequestCategoryEnum = 'training' | 'testing' | 'split';
|
|
22372
|
+
export type OrganizationCreateProjectRequestCategoryEnum = 'training' | 'validation' | 'testing' | 'split';
|
|
22373
22373
|
export const OrganizationCreateProjectRequestCategoryEnumValues: string[];
|
|
22374
22374
|
|
|
22375
22375
|
|
|
@@ -22483,7 +22483,7 @@ export type OrganizationCreateProjectWithFiles = {
|
|
|
22483
22483
|
};
|
|
22484
22484
|
export type OrganizationCreateProjectWithFilesUploadTypeEnum = 'dataset' | 'project';
|
|
22485
22485
|
export const OrganizationCreateProjectWithFilesUploadTypeEnumValues: string[];
|
|
22486
|
-
export type OrganizationCreateProjectWithFilesCategoryEnum = 'training' | 'testing' | 'split';
|
|
22486
|
+
export type OrganizationCreateProjectWithFilesCategoryEnum = 'training' | 'validation' | 'testing' | 'split';
|
|
22487
22487
|
export const OrganizationCreateProjectWithFilesCategoryEnumValues: string[];
|
|
22488
22488
|
|
|
22489
22489
|
|
|
@@ -22911,7 +22911,7 @@ export type OrganizationPipelineRunStep = {
|
|
|
22911
22911
|
};
|
|
22912
22912
|
export type OrganizationPipelineRunStepUploadTypeEnum = 'project' | 'dataset';
|
|
22913
22913
|
export const OrganizationPipelineRunStepUploadTypeEnumValues: string[];
|
|
22914
|
-
export type OrganizationPipelineRunStepCategoryEnum = 'training' | 'testing' | 'split';
|
|
22914
|
+
export type OrganizationPipelineRunStepCategoryEnum = 'training' | 'validation' | 'testing' | 'split';
|
|
22915
22915
|
export const OrganizationPipelineRunStepCategoryEnumValues: string[];
|
|
22916
22916
|
|
|
22917
22917
|
|
|
@@ -22949,7 +22949,7 @@ export type OrganizationPipelineStep = {
|
|
|
22949
22949
|
};
|
|
22950
22950
|
export type OrganizationPipelineStepUploadTypeEnum = 'project' | 'dataset';
|
|
22951
22951
|
export const OrganizationPipelineStepUploadTypeEnumValues: string[];
|
|
22952
|
-
export type OrganizationPipelineStepCategoryEnum = 'training' | 'testing' | 'split';
|
|
22952
|
+
export type OrganizationPipelineStepCategoryEnum = 'training' | 'validation' | 'testing' | 'split';
|
|
22953
22953
|
export const OrganizationPipelineStepCategoryEnumValues: string[];
|
|
22954
22954
|
|
|
22955
22955
|
|
|
@@ -26060,6 +26060,20 @@ export type StartTrainingRequestAnomaly = {
|
|
|
26060
26060
|
};
|
|
26061
26061
|
|
|
26062
26062
|
|
|
26063
|
+
export type StartVlmInferenceJobResponse = {
|
|
26064
|
+
/**
|
|
26065
|
+
* Whether the operation succeeded
|
|
26066
|
+
*/
|
|
26067
|
+
success: boolean;
|
|
26068
|
+
/**
|
|
26069
|
+
* Optional error description (set if 'success' was false)
|
|
26070
|
+
*/
|
|
26071
|
+
error?: string;
|
|
26072
|
+
jobId: number;
|
|
26073
|
+
configId: number;
|
|
26074
|
+
};
|
|
26075
|
+
|
|
26076
|
+
|
|
26063
26077
|
export type StopDeviceDebugStreamRequest = {
|
|
26064
26078
|
streamId: number;
|
|
26065
26079
|
};
|
|
@@ -28262,11 +28276,11 @@ export type VlmInferenceResults = {
|
|
|
28262
28276
|
export type VlmInferenceResultsResults = {
|
|
28263
28277
|
sample: Sample;
|
|
28264
28278
|
/**
|
|
28265
|
-
* Classification results for the sample
|
|
28279
|
+
* Classification results for the sample, or null for pending results.
|
|
28266
28280
|
*/
|
|
28267
28281
|
result: {
|
|
28268
28282
|
[key: string]: number;
|
|
28269
|
-
};
|
|
28283
|
+
} | null;
|
|
28270
28284
|
};
|
|
28271
28285
|
|
|
28272
28286
|
|
|
@@ -56408,7 +56408,7 @@ class VlmApi {
|
|
|
56408
56408
|
url = authDefault.url;
|
|
56409
56409
|
(0, models_1.applyFormParams)(requestOptions, localVarFormParams);
|
|
56410
56410
|
const response = await fetch(url, requestOptions);
|
|
56411
|
-
return this.handleResponse(response, '
|
|
56411
|
+
return this.handleResponse(response, 'StartVlmInferenceJobResponse');
|
|
56412
56412
|
}
|
|
56413
56413
|
/**
|
|
56414
56414
|
* Initializes the inference worker, speeding it up for subsequent requests.
|
|
@@ -61476,6 +61476,7 @@ __exportStar(require("./startSamplingRequest"), exports);
|
|
|
61476
61476
|
__exportStar(require("./startSamplingResponse"), exports);
|
|
61477
61477
|
__exportStar(require("./startTensorBoardSessionRequest"), exports);
|
|
61478
61478
|
__exportStar(require("./startTrainingRequestAnomaly"), exports);
|
|
61479
|
+
__exportStar(require("./startVlmInferenceJobResponse"), exports);
|
|
61479
61480
|
__exportStar(require("./stopDeviceDebugStreamRequest"), exports);
|
|
61480
61481
|
__exportStar(require("./storageProvider"), exports);
|
|
61481
61482
|
__exportStar(require("./storeInferenceHistoryRequest"), exports);
|
|
@@ -62074,7 +62075,7 @@ define("library/sdk/model/organizationCreateProject", ["require", "exports"], fu
|
|
|
62074
62075
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62075
62076
|
exports.OrganizationCreateProjectCategoryEnumValues = exports.OrganizationCreateProjectUploadTypeEnumValues = void 0;
|
|
62076
62077
|
exports.OrganizationCreateProjectUploadTypeEnumValues = ['dataset', 'project'];
|
|
62077
|
-
exports.OrganizationCreateProjectCategoryEnumValues = ['training', 'testing', 'split'];
|
|
62078
|
+
exports.OrganizationCreateProjectCategoryEnumValues = ['training', 'validation', 'testing', 'split'];
|
|
62078
62079
|
});
|
|
62079
62080
|
|
|
62080
62081
|
|
|
@@ -62100,7 +62101,7 @@ define("library/sdk/model/organizationCreateProjectRequest", ["require", "export
|
|
|
62100
62101
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62101
62102
|
exports.OrganizationCreateProjectRequestCategoryEnumValues = exports.OrganizationCreateProjectRequestUploadTypeEnumValues = void 0;
|
|
62102
62103
|
exports.OrganizationCreateProjectRequestUploadTypeEnumValues = ['project', 'dataset'];
|
|
62103
|
-
exports.OrganizationCreateProjectRequestCategoryEnumValues = ['training', 'testing', 'split'];
|
|
62104
|
+
exports.OrganizationCreateProjectRequestCategoryEnumValues = ['training', 'validation', 'testing', 'split'];
|
|
62104
62105
|
});
|
|
62105
62106
|
|
|
62106
62107
|
|
|
@@ -62131,7 +62132,7 @@ define("library/sdk/model/organizationCreateProjectWithFiles", ["require", "expo
|
|
|
62131
62132
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62132
62133
|
exports.OrganizationCreateProjectWithFilesCategoryEnumValues = exports.OrganizationCreateProjectWithFilesUploadTypeEnumValues = void 0;
|
|
62133
62134
|
exports.OrganizationCreateProjectWithFilesUploadTypeEnumValues = ['dataset', 'project'];
|
|
62134
|
-
exports.OrganizationCreateProjectWithFilesCategoryEnumValues = ['training', 'testing', 'split'];
|
|
62135
|
+
exports.OrganizationCreateProjectWithFilesCategoryEnumValues = ['training', 'validation', 'testing', 'split'];
|
|
62135
62136
|
});
|
|
62136
62137
|
|
|
62137
62138
|
|
|
@@ -62263,7 +62264,7 @@ define("library/sdk/model/organizationPipelineRunStep", ["require", "exports"],
|
|
|
62263
62264
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62264
62265
|
exports.OrganizationPipelineRunStepCategoryEnumValues = exports.OrganizationPipelineRunStepUploadTypeEnumValues = void 0;
|
|
62265
62266
|
exports.OrganizationPipelineRunStepUploadTypeEnumValues = ['project', 'dataset'];
|
|
62266
|
-
exports.OrganizationPipelineRunStepCategoryEnumValues = ['training', 'testing', 'split'];
|
|
62267
|
+
exports.OrganizationPipelineRunStepCategoryEnumValues = ['training', 'validation', 'testing', 'split'];
|
|
62267
62268
|
});
|
|
62268
62269
|
|
|
62269
62270
|
|
|
@@ -62273,7 +62274,7 @@ define("library/sdk/model/organizationPipelineStep", ["require", "exports"], fun
|
|
|
62273
62274
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
62274
62275
|
exports.OrganizationPipelineStepCategoryEnumValues = exports.OrganizationPipelineStepUploadTypeEnumValues = void 0;
|
|
62275
62276
|
exports.OrganizationPipelineStepUploadTypeEnumValues = ['project', 'dataset'];
|
|
62276
|
-
exports.OrganizationPipelineStepCategoryEnumValues = ['training', 'testing', 'split'];
|
|
62277
|
+
exports.OrganizationPipelineStepCategoryEnumValues = ['training', 'validation', 'testing', 'split'];
|
|
62277
62278
|
});
|
|
62278
62279
|
|
|
62279
62280
|
|
|
@@ -63441,6 +63442,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
63441
63442
|
});
|
|
63442
63443
|
|
|
63443
63444
|
|
|
63445
|
+
define("library/sdk/model/startVlmInferenceJobResponse", ["require", "exports"], function (require, exports) {
|
|
63446
|
+
"use strict";
|
|
63447
|
+
// Generated by studio/openapi/generate-models/convert.ts
|
|
63448
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
63449
|
+
});
|
|
63450
|
+
|
|
63451
|
+
|
|
63444
63452
|
define("library/sdk/model/stopDeviceDebugStreamRequest", ["require", "exports"], function (require, exports) {
|
|
63445
63453
|
"use strict";
|
|
63446
63454
|
// Generated by studio/openapi/generate-models/convert.ts
|