mixpeek 0.81.65 → 0.81.67
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/dist/api/custom-models-api.d.ts +6 -6
- package/dist/api/custom-models-api.d.ts.map +1 -1
- package/dist/api/manifest-api.d.ts +24 -24
- package/dist/api/manifest-api.d.ts.map +1 -1
- package/dist/api/taxonomies-api.d.ts +103 -0
- package/dist/api/taxonomies-api.d.ts.map +1 -1
- package/dist/index.js +107 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +107 -0
- package/dist/index.mjs.map +1 -1
- package/dist/models/create-node-from-documents-request.d.ts +54 -0
- package/dist/models/create-node-from-documents-request.d.ts.map +1 -0
- package/dist/models/create-taxonomy-from-documents-request.d.ts +72 -0
- package/dist/models/create-taxonomy-from-documents-request.d.ts.map +1 -0
- package/dist/models/document-ref.d.ts +31 -0
- package/dist/models/document-ref.d.ts.map +1 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.d.ts.map +1 -1
- package/dist/models/skipped-document-ref.d.ts +37 -0
- package/dist/models/skipped-document-ref.d.ts.map +1 -0
- package/dist/models/taxonomy-node-from-documents-response.d.ts +92 -0
- package/dist/models/taxonomy-node-from-documents-response.d.ts.map +1 -0
- package/dist/models/validation-error.d.ts +0 -12
- package/dist/models/validation-error.d.ts.map +1 -1
- package/dist/models/vector-index-definition.d.ts +6 -0
- package/dist/models/vector-index-definition.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -92,7 +92,7 @@ export declare const CustomModelsApiAxiosParamCreator: (configuration?: Configur
|
|
|
92
92
|
* Upload custom model weights to the namespace. **Requirements:** - Organization must be on Enterprise tier **Supported Model Formats:** - `safetensors`: SafeTensors format (recommended for transformers) - `onnx`: ONNX Runtime format - `pytorch`: PyTorch state_dict or TorchScript - `huggingface`: HuggingFace model directory **Base Images (auto-selected based on format):** - `mixpeek/serve-gpu:latest`: For safetensors, pytorch, huggingface (includes torch, transformers) - `mixpeek/serve-minimal:latest`: For ONNX (includes onnxruntime only) **Important:** Models run in fixed base images. You cannot install additional pip packages. All required frameworks (torch, transformers, onnxruntime) are pre-installed.
|
|
93
93
|
* @summary Upload a custom model
|
|
94
94
|
* @param {string} namespaceId
|
|
95
|
-
* @param {
|
|
95
|
+
* @param {File} file Model archive (.tar.gz)
|
|
96
96
|
* @param {string} name Model name
|
|
97
97
|
* @param {string} version Model version
|
|
98
98
|
* @param {UploadModelNamespacesModelFormatEnum} modelFormat Model format
|
|
@@ -104,7 +104,7 @@ export declare const CustomModelsApiAxiosParamCreator: (configuration?: Configur
|
|
|
104
104
|
* @param {*} [options] Override http request option.
|
|
105
105
|
* @throws {RequiredError}
|
|
106
106
|
*/
|
|
107
|
-
uploadModelNamespaces: (namespaceId: string, file:
|
|
107
|
+
uploadModelNamespaces: (namespaceId: string, file: File, name: string, version: string, modelFormat: UploadModelNamespacesModelFormatEnum, framework?: string, taskType?: string, numCpus?: number, numGpus?: number, memoryGb?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
108
108
|
};
|
|
109
109
|
/**
|
|
110
110
|
* CustomModelsApi - functional programming interface
|
|
@@ -177,7 +177,7 @@ export declare const CustomModelsApiFp: (configuration?: Configuration) => {
|
|
|
177
177
|
* Upload custom model weights to the namespace. **Requirements:** - Organization must be on Enterprise tier **Supported Model Formats:** - `safetensors`: SafeTensors format (recommended for transformers) - `onnx`: ONNX Runtime format - `pytorch`: PyTorch state_dict or TorchScript - `huggingface`: HuggingFace model directory **Base Images (auto-selected based on format):** - `mixpeek/serve-gpu:latest`: For safetensors, pytorch, huggingface (includes torch, transformers) - `mixpeek/serve-minimal:latest`: For ONNX (includes onnxruntime only) **Important:** Models run in fixed base images. You cannot install additional pip packages. All required frameworks (torch, transformers, onnxruntime) are pre-installed.
|
|
178
178
|
* @summary Upload a custom model
|
|
179
179
|
* @param {string} namespaceId
|
|
180
|
-
* @param {
|
|
180
|
+
* @param {File} file Model archive (.tar.gz)
|
|
181
181
|
* @param {string} name Model name
|
|
182
182
|
* @param {string} version Model version
|
|
183
183
|
* @param {UploadModelNamespacesModelFormatEnum} modelFormat Model format
|
|
@@ -189,7 +189,7 @@ export declare const CustomModelsApiFp: (configuration?: Configuration) => {
|
|
|
189
189
|
* @param {*} [options] Override http request option.
|
|
190
190
|
* @throws {RequiredError}
|
|
191
191
|
*/
|
|
192
|
-
uploadModelNamespaces(namespaceId: string, file:
|
|
192
|
+
uploadModelNamespaces(namespaceId: string, file: File, name: string, version: string, modelFormat: UploadModelNamespacesModelFormatEnum, framework?: string, taskType?: string, numCpus?: number, numGpus?: number, memoryGb?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModelUploadResponse>>;
|
|
193
193
|
};
|
|
194
194
|
/**
|
|
195
195
|
* CustomModelsApi - factory interface
|
|
@@ -402,10 +402,10 @@ export interface CustomModelsApiUploadModelNamespacesRequest {
|
|
|
402
402
|
readonly namespaceId: string;
|
|
403
403
|
/**
|
|
404
404
|
* Model archive (.tar.gz)
|
|
405
|
-
* @type {
|
|
405
|
+
* @type {File}
|
|
406
406
|
* @memberof CustomModelsApiUploadModelNamespaces
|
|
407
407
|
*/
|
|
408
|
-
readonly file:
|
|
408
|
+
readonly file: File;
|
|
409
409
|
/**
|
|
410
410
|
* Model name
|
|
411
411
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"custom-models-api.d.ts","sourceRoot":"","sources":["../../api/custom-models-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,qBAAqB,EAAE,MAAM,OAAO,CAAC;AAMhF,OAAO,EAAiC,KAAK,WAAW,EAAE,OAAO,EAAqC,MAAM,SAAS,CAAC;AAEtH,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,WAAW,CAAC;AAE5D,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAC;AAEzD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,WAAW,CAAC;AAEvD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,WAAW,CAAC;AAMxD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAErD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAErD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAErD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAEnD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AACrD;;;GAGG;AACH,eAAO,MAAM,gCAAgC,GAAa,gBAAgB,aAAa;IAE/E;;;;;;;OAOG;yCACwC,MAAM,WAAW,MAAM,YAAW,qBAAqB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA8B9H;;;;;;;OAOG;yCACwC,MAAM,WAAW,MAAM,YAAW,qBAAqB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA8B9H;;;;;;;OAOG;6CAC4C,MAAM,WAAW,MAAM,YAAW,qBAAqB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA8BlI;;;;;;;;OAQG;4CAC2C,MAAM,WAAW,MAAM,0BAA0B,qBAAqB,YAAW,qBAAqB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAiChL;;;;;;;OAOG;sCACqC,MAAM,WAAW,MAAM,YAAW,qBAAqB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA8B3H;;;;;;OAMG;oDACmD,MAAM,YAAW,qBAAqB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA2BxH;;;;;;OAMG;wCACuC,MAAM,YAAW,qBAAqB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA2B5G;;;;;;;;;;;;;;;OAeG;yCACwC,MAAM,QAAQ,
|
|
1
|
+
{"version":3,"file":"custom-models-api.d.ts","sourceRoot":"","sources":["../../api/custom-models-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -24,20 +24,20 @@ export declare const ManifestApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
24
24
|
/**
|
|
25
25
|
* Apply a YAML manifest to create resources. Creates all resources defined in the manifest file in dependency order. Fails if any resource already exists (create-only mode). Performs automatic rollback if any resource creation fails. **Features:** - Topological sorting ensures resources are created in correct dependency order - Secret references (`${{ secrets.NAME }}`) are resolved from organization secrets - Atomic operation: rolls back all created resources if any creation fails - Dry run mode validates the manifest without making changes **Example:** ```bash curl -X POST /v1/manifest/apply \\ -H \"Authorization: Bearer $API_KEY\" \\ -H \"X-Namespace: ns_xxx\" \\ -F \"manifest_file=@mixpeek.yaml\" ``` **Example manifest:** ```yaml version: \"1.0\" metadata: name: \"my-environment\" namespaces: - name: video_search feature_extractors: - name: multimodal_extractor version: v1 buckets: - name: raw_videos namespace: video_search schema: properties: video: { type: video } ```
|
|
26
26
|
* @summary Apply Manifest
|
|
27
|
-
* @param {
|
|
27
|
+
* @param {File} manifestFile YAML manifest file
|
|
28
28
|
* @param {boolean} [dryRun] Validate only, don\'t create resources
|
|
29
29
|
* @param {*} [options] Override http request option.
|
|
30
30
|
* @throws {RequiredError}
|
|
31
31
|
*/
|
|
32
|
-
applyManifest: (manifestFile:
|
|
32
|
+
applyManifest: (manifestFile: File, dryRun?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33
33
|
/**
|
|
34
34
|
* Compare a manifest file with current state. Shows resources that would be: - **Created**: In manifest but not in system - **In system only**: In system but not in manifest - **Different**: In both but with configuration differences This is useful for understanding what changes would occur before applying a manifest. **Example:** ```bash curl -X POST /v1/manifest/diff \\ -H \"Authorization: Bearer $API_KEY\" \\ -F \"manifest_file=@mixpeek.yaml\" ```
|
|
35
35
|
* @summary Diff Manifest
|
|
36
|
-
* @param {
|
|
36
|
+
* @param {File} manifestFile YAML manifest file
|
|
37
37
|
* @param {*} [options] Override http request option.
|
|
38
38
|
* @throws {RequiredError}
|
|
39
39
|
*/
|
|
40
|
-
diffManifest: (manifestFile:
|
|
40
|
+
diffManifest: (manifestFile: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
41
|
/**
|
|
42
42
|
* Export current resources to a YAML manifest. Exports all resources (or a specific namespace) to a YAML file that can be version-controlled and re-applied to another environment. **Features:** - Resource IDs are converted to human-readable names - Secret values are replaced with placeholder references (`${{ secrets.NAME }}`) - Output is formatted for readability and git-friendliness **Note:** You must configure actual secrets before applying the exported manifest to a new environment. **Example:** ```bash # Export all resources curl /v1/manifest/export \\ -H \"Authorization: Bearer $API_KEY\" \\ -o mixpeek.yaml # Export specific namespace curl \"/v1/manifest/export?namespace_id=ns_abc123\" \\ -H \"Authorization: Bearer $API_KEY\" \\ -o namespace.yaml ```
|
|
43
43
|
* @summary Export Manifest Get
|
|
@@ -69,20 +69,20 @@ export declare const ManifestApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
69
69
|
/**
|
|
70
70
|
* Lint a YAML manifest for best practices and potential issues. Goes beyond basic validation to provide actionable suggestions for improving your manifest configuration. This endpoint is designed for AI agents and developers who want to optimize their Mixpeek setup. **Lint Rules:** - `UNUSED_EXTRACTOR`: Feature extractor defined but not used by any collection - `UNUSED_COLLECTION`: Collection not referenced by any retriever - `MISSING_INPUT_SCHEMA`: Retriever uses templates but has no input_schema - `MISSING_CACHE_CONFIG`: Retriever without caching (especially with LLM stages) - `SUBOPTIMAL_STAGE_ORDER`: Filter stages after expensive operations - `DUPLICATE_FEATURE_URI`: Same feature searched multiple times - `MISSING_DESCRIPTION`: Resources without descriptions - `NO_SEARCH_STAGE`: Retriever with no search stages - `EXTRACTOR_NOT_IN_NAMESPACE`: Collection uses extractor not in namespace - `MISSING_SECRET`: Secret reference not configured **Severity Levels:** - `error`: Must be fixed before applying - `warning`: Best practice violation, should be fixed - `info`: Suggestion for improvement **Example:** ```bash curl -X POST /v1/manifest/lint \\ -H \"Authorization: Bearer $API_KEY\" \\ -F \"manifest_file=@mixpeek.yaml\" ``` **Response includes actionable suggestions:** ```json { \"valid\": true, \"results\": [ { \"code\": \"MISSING_CACHE_CONFIG\", \"severity\": \"warning\", \"message\": \"Retriever \'product_search\' has no cache configuration\", \"location\": \"retrievers[0]\", \"suggestion\": \"Add cache_config to improve performance\", \"fix_example\": \"cache_config:\\n enabled: true\\n ttl_seconds: 3600\" } ], \"summary\": {\"error\": 0, \"warning\": 1, \"info\": 0} } ```
|
|
71
71
|
* @summary Lint Manifest
|
|
72
|
-
* @param {
|
|
72
|
+
* @param {File} manifestFile YAML manifest file
|
|
73
73
|
* @param {Array<string>} [skipRules] Rule codes to skip (e.g., MISSING_DESCRIPTION)
|
|
74
74
|
* @param {*} [options] Override http request option.
|
|
75
75
|
* @throws {RequiredError}
|
|
76
76
|
*/
|
|
77
|
-
lintManifest: (manifestFile:
|
|
77
|
+
lintManifest: (manifestFile: File, skipRules?: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78
78
|
/**
|
|
79
79
|
* Validate a YAML manifest without applying. Checks: - YAML syntax validity - Schema validation against manifest models - Cross-resource reference validation - Dependency resolution (no circular dependencies) - Secret reference existence Returns detailed validation results including: - Resource counts by type - Missing secrets that need to be configured - Validation errors and warnings **Example:** ```bash curl -X POST /v1/manifest/validate \\ -H \"Authorization: Bearer $API_KEY\" \\ -F \"manifest_file=@mixpeek.yaml\" ```
|
|
80
80
|
* @summary Validate Manifest
|
|
81
|
-
* @param {
|
|
81
|
+
* @param {File} manifestFile YAML manifest file
|
|
82
82
|
* @param {*} [options] Override http request option.
|
|
83
83
|
* @throws {RequiredError}
|
|
84
84
|
*/
|
|
85
|
-
validateManifest: (manifestFile:
|
|
85
|
+
validateManifest: (manifestFile: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
86
86
|
};
|
|
87
87
|
/**
|
|
88
88
|
* ManifestApi - functional programming interface
|
|
@@ -92,20 +92,20 @@ export declare const ManifestApiFp: (configuration?: Configuration) => {
|
|
|
92
92
|
/**
|
|
93
93
|
* Apply a YAML manifest to create resources. Creates all resources defined in the manifest file in dependency order. Fails if any resource already exists (create-only mode). Performs automatic rollback if any resource creation fails. **Features:** - Topological sorting ensures resources are created in correct dependency order - Secret references (`${{ secrets.NAME }}`) are resolved from organization secrets - Atomic operation: rolls back all created resources if any creation fails - Dry run mode validates the manifest without making changes **Example:** ```bash curl -X POST /v1/manifest/apply \\ -H \"Authorization: Bearer $API_KEY\" \\ -H \"X-Namespace: ns_xxx\" \\ -F \"manifest_file=@mixpeek.yaml\" ``` **Example manifest:** ```yaml version: \"1.0\" metadata: name: \"my-environment\" namespaces: - name: video_search feature_extractors: - name: multimodal_extractor version: v1 buckets: - name: raw_videos namespace: video_search schema: properties: video: { type: video } ```
|
|
94
94
|
* @summary Apply Manifest
|
|
95
|
-
* @param {
|
|
95
|
+
* @param {File} manifestFile YAML manifest file
|
|
96
96
|
* @param {boolean} [dryRun] Validate only, don\'t create resources
|
|
97
97
|
* @param {*} [options] Override http request option.
|
|
98
98
|
* @throws {RequiredError}
|
|
99
99
|
*/
|
|
100
|
-
applyManifest(manifestFile:
|
|
100
|
+
applyManifest(manifestFile: File, dryRun?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApplyResult>>;
|
|
101
101
|
/**
|
|
102
102
|
* Compare a manifest file with current state. Shows resources that would be: - **Created**: In manifest but not in system - **In system only**: In system but not in manifest - **Different**: In both but with configuration differences This is useful for understanding what changes would occur before applying a manifest. **Example:** ```bash curl -X POST /v1/manifest/diff \\ -H \"Authorization: Bearer $API_KEY\" \\ -F \"manifest_file=@mixpeek.yaml\" ```
|
|
103
103
|
* @summary Diff Manifest
|
|
104
|
-
* @param {
|
|
104
|
+
* @param {File} manifestFile YAML manifest file
|
|
105
105
|
* @param {*} [options] Override http request option.
|
|
106
106
|
* @throws {RequiredError}
|
|
107
107
|
*/
|
|
108
|
-
diffManifest(manifestFile:
|
|
108
|
+
diffManifest(manifestFile: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DiffResult>>;
|
|
109
109
|
/**
|
|
110
110
|
* Export current resources to a YAML manifest. Exports all resources (or a specific namespace) to a YAML file that can be version-controlled and re-applied to another environment. **Features:** - Resource IDs are converted to human-readable names - Secret values are replaced with placeholder references (`${{ secrets.NAME }}`) - Output is formatted for readability and git-friendliness **Note:** You must configure actual secrets before applying the exported manifest to a new environment. **Example:** ```bash # Export all resources curl /v1/manifest/export \\ -H \"Authorization: Bearer $API_KEY\" \\ -o mixpeek.yaml # Export specific namespace curl \"/v1/manifest/export?namespace_id=ns_abc123\" \\ -H \"Authorization: Bearer $API_KEY\" \\ -o namespace.yaml ```
|
|
111
111
|
* @summary Export Manifest Get
|
|
@@ -137,20 +137,20 @@ export declare const ManifestApiFp: (configuration?: Configuration) => {
|
|
|
137
137
|
/**
|
|
138
138
|
* Lint a YAML manifest for best practices and potential issues. Goes beyond basic validation to provide actionable suggestions for improving your manifest configuration. This endpoint is designed for AI agents and developers who want to optimize their Mixpeek setup. **Lint Rules:** - `UNUSED_EXTRACTOR`: Feature extractor defined but not used by any collection - `UNUSED_COLLECTION`: Collection not referenced by any retriever - `MISSING_INPUT_SCHEMA`: Retriever uses templates but has no input_schema - `MISSING_CACHE_CONFIG`: Retriever without caching (especially with LLM stages) - `SUBOPTIMAL_STAGE_ORDER`: Filter stages after expensive operations - `DUPLICATE_FEATURE_URI`: Same feature searched multiple times - `MISSING_DESCRIPTION`: Resources without descriptions - `NO_SEARCH_STAGE`: Retriever with no search stages - `EXTRACTOR_NOT_IN_NAMESPACE`: Collection uses extractor not in namespace - `MISSING_SECRET`: Secret reference not configured **Severity Levels:** - `error`: Must be fixed before applying - `warning`: Best practice violation, should be fixed - `info`: Suggestion for improvement **Example:** ```bash curl -X POST /v1/manifest/lint \\ -H \"Authorization: Bearer $API_KEY\" \\ -F \"manifest_file=@mixpeek.yaml\" ``` **Response includes actionable suggestions:** ```json { \"valid\": true, \"results\": [ { \"code\": \"MISSING_CACHE_CONFIG\", \"severity\": \"warning\", \"message\": \"Retriever \'product_search\' has no cache configuration\", \"location\": \"retrievers[0]\", \"suggestion\": \"Add cache_config to improve performance\", \"fix_example\": \"cache_config:\\n enabled: true\\n ttl_seconds: 3600\" } ], \"summary\": {\"error\": 0, \"warning\": 1, \"info\": 0} } ```
|
|
139
139
|
* @summary Lint Manifest
|
|
140
|
-
* @param {
|
|
140
|
+
* @param {File} manifestFile YAML manifest file
|
|
141
141
|
* @param {Array<string>} [skipRules] Rule codes to skip (e.g., MISSING_DESCRIPTION)
|
|
142
142
|
* @param {*} [options] Override http request option.
|
|
143
143
|
* @throws {RequiredError}
|
|
144
144
|
*/
|
|
145
|
-
lintManifest(manifestFile:
|
|
145
|
+
lintManifest(manifestFile: File, skipRules?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LintResponse>>;
|
|
146
146
|
/**
|
|
147
147
|
* Validate a YAML manifest without applying. Checks: - YAML syntax validity - Schema validation against manifest models - Cross-resource reference validation - Dependency resolution (no circular dependencies) - Secret reference existence Returns detailed validation results including: - Resource counts by type - Missing secrets that need to be configured - Validation errors and warnings **Example:** ```bash curl -X POST /v1/manifest/validate \\ -H \"Authorization: Bearer $API_KEY\" \\ -F \"manifest_file=@mixpeek.yaml\" ```
|
|
148
148
|
* @summary Validate Manifest
|
|
149
|
-
* @param {
|
|
149
|
+
* @param {File} manifestFile YAML manifest file
|
|
150
150
|
* @param {*} [options] Override http request option.
|
|
151
151
|
* @throws {RequiredError}
|
|
152
152
|
*/
|
|
153
|
-
validateManifest(manifestFile:
|
|
153
|
+
validateManifest(manifestFile: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateResult>>;
|
|
154
154
|
};
|
|
155
155
|
/**
|
|
156
156
|
* ManifestApi - factory interface
|
|
@@ -222,10 +222,10 @@ export declare const ManifestApiFactory: (configuration?: Configuration, basePat
|
|
|
222
222
|
export interface ManifestApiApplyManifestRequest {
|
|
223
223
|
/**
|
|
224
224
|
* YAML manifest file
|
|
225
|
-
* @type {
|
|
225
|
+
* @type {File}
|
|
226
226
|
* @memberof ManifestApiApplyManifest
|
|
227
227
|
*/
|
|
228
|
-
readonly manifestFile:
|
|
228
|
+
readonly manifestFile: File;
|
|
229
229
|
/**
|
|
230
230
|
* Validate only, don\'t create resources
|
|
231
231
|
* @type {boolean}
|
|
@@ -241,10 +241,10 @@ export interface ManifestApiApplyManifestRequest {
|
|
|
241
241
|
export interface ManifestApiDiffManifestRequest {
|
|
242
242
|
/**
|
|
243
243
|
* YAML manifest file
|
|
244
|
-
* @type {
|
|
244
|
+
* @type {File}
|
|
245
245
|
* @memberof ManifestApiDiffManifest
|
|
246
246
|
*/
|
|
247
|
-
readonly manifestFile:
|
|
247
|
+
readonly manifestFile: File;
|
|
248
248
|
}
|
|
249
249
|
/**
|
|
250
250
|
* Request parameters for exportManifestGet operation in ManifestApi.
|
|
@@ -317,10 +317,10 @@ export interface ManifestApiGenerateManifestRequest {
|
|
|
317
317
|
export interface ManifestApiLintManifestRequest {
|
|
318
318
|
/**
|
|
319
319
|
* YAML manifest file
|
|
320
|
-
* @type {
|
|
320
|
+
* @type {File}
|
|
321
321
|
* @memberof ManifestApiLintManifest
|
|
322
322
|
*/
|
|
323
|
-
readonly manifestFile:
|
|
323
|
+
readonly manifestFile: File;
|
|
324
324
|
/**
|
|
325
325
|
* Rule codes to skip (e.g., MISSING_DESCRIPTION)
|
|
326
326
|
* @type {Array<string>}
|
|
@@ -336,10 +336,10 @@ export interface ManifestApiLintManifestRequest {
|
|
|
336
336
|
export interface ManifestApiValidateManifestRequest {
|
|
337
337
|
/**
|
|
338
338
|
* YAML manifest file
|
|
339
|
-
* @type {
|
|
339
|
+
* @type {File}
|
|
340
340
|
* @memberof ManifestApiValidateManifest
|
|
341
341
|
*/
|
|
342
|
-
readonly manifestFile:
|
|
342
|
+
readonly manifestFile: File;
|
|
343
343
|
}
|
|
344
344
|
/**
|
|
345
345
|
* ManifestApi - object-oriented interface
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manifest-api.d.ts","sourceRoot":"","sources":["../../api/manifest-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,qBAAqB,EAAE,MAAM,OAAO,CAAC;AAMhF,OAAO,EAAiC,KAAK,WAAW,EAAE,OAAO,EAAqC,MAAM,SAAS,CAAC;AAEtH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAM5C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAE9C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAChD;;;GAGG;AACH,eAAO,MAAM,4BAA4B,GAAa,gBAAgB,aAAa;IAE3E;;;;;;;OAOG;kCACiC,
|
|
1
|
+
{"version":3,"file":"manifest-api.d.ts","sourceRoot":"","sources":["../../api/manifest-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -14,12 +14,15 @@ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import type { CloneTaxonomyRequest } from '../models';
|
|
16
16
|
import type { CloneTaxonomyResponse } from '../models';
|
|
17
|
+
import type { CreateNodeFromDocumentsRequest } from '../models';
|
|
18
|
+
import type { CreateTaxonomyFromDocumentsRequest } from '../models';
|
|
17
19
|
import type { CreateTaxonomyRequest } from '../models';
|
|
18
20
|
import type { JoinResponse } from '../models';
|
|
19
21
|
import type { ListTaxonomiesRequest } from '../models';
|
|
20
22
|
import type { ListTaxonomiesResponse } from '../models';
|
|
21
23
|
import type { PatchTaxonomyRequest } from '../models';
|
|
22
24
|
import type { Payload } from '../models';
|
|
25
|
+
import type { TaxonomyNodeFromDocumentsResponse } from '../models';
|
|
23
26
|
import type { TaxonomyResponse } from '../models';
|
|
24
27
|
/**
|
|
25
28
|
* TaxonomiesApi - axios parameter creator
|
|
@@ -35,6 +38,23 @@ export declare const TaxonomiesApiAxiosParamCreator: (configuration?: Configurat
|
|
|
35
38
|
* @throws {RequiredError}
|
|
36
39
|
*/
|
|
37
40
|
cloneTaxonomyTaxonomies: (taxonomyIdentifier: string, cloneTaxonomyRequest: CloneTaxonomyRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
|
+
/**
|
|
42
|
+
* Promote a document selection (e.g. a lasso/cluster selection in the cluster visualization) into a NEW flat taxonomy in one call. Creates, in order: 1. a **node collection** mirroring the selection\'s vector index (same vector name, dimensions, and feature_uri — no re-embedding, no GPU work), 2. a **vector-search retriever** over it, 3. the **flat taxonomy** wired to both (input_mappings map an incoming document\'s stored embedding onto the retriever), 4. the **first node**: a document whose anchor vector is the centroid of the referenced documents\' stored vectors, labeled `node_label`. Documents enriched through the taxonomy afterwards are labeled with the nearest node\'s `label`. To add more nodes later, use `POST /v1/taxonomies/{taxonomy_id}/nodes/from-documents`. Resources created before a failing step are cleaned up best-effort.
|
|
43
|
+
* @summary Create a taxonomy from a document selection (one gesture)
|
|
44
|
+
* @param {CreateTaxonomyFromDocumentsRequest} createTaxonomyFromDocumentsRequest
|
|
45
|
+
* @param {*} [options] Override http request option.
|
|
46
|
+
* @throws {RequiredError}
|
|
47
|
+
*/
|
|
48
|
+
createTaxonomyFromDocumentsTaxonomies: (createTaxonomyFromDocumentsRequest: CreateTaxonomyFromDocumentsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
49
|
+
/**
|
|
50
|
+
* Add a node to an existing **flat** taxonomy from a document selection. The node is an ordinary document in the taxonomy\'s node (source) collection: its anchor vector is the **centroid of the referenced documents\' stored vectors** and its `label` is `node_label`. Future documents enriched through this taxonomy are labeled with the nearest node\'s `label`. Only stored vectors are read — no re-embedding or GPU work. Documents that can\'t contribute (missing, no matching vector) are skipped and reported in `documents_skipped`; the call fails only when NO document contributes. Hierarchical taxonomies are not supported here (their nodes are whole collections) — the error points you to the flat-taxonomy path.
|
|
51
|
+
* @summary Add a taxonomy node derived from a document selection
|
|
52
|
+
* @param {string} taxonomyIdentifier Taxonomy ID or name
|
|
53
|
+
* @param {CreateNodeFromDocumentsRequest} createNodeFromDocumentsRequest
|
|
54
|
+
* @param {*} [options] Override http request option.
|
|
55
|
+
* @throws {RequiredError}
|
|
56
|
+
*/
|
|
57
|
+
createTaxonomyNodeFromDocumentsTaxonomies: (taxonomyIdentifier: string, createNodeFromDocumentsRequest: CreateNodeFromDocumentsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
38
58
|
/**
|
|
39
59
|
* Create a taxonomy and return the created resource.
|
|
40
60
|
* @summary Create Taxonomy
|
|
@@ -141,6 +161,23 @@ export declare const TaxonomiesApiFp: (configuration?: Configuration) => {
|
|
|
141
161
|
* @throws {RequiredError}
|
|
142
162
|
*/
|
|
143
163
|
cloneTaxonomyTaxonomies(taxonomyIdentifier: string, cloneTaxonomyRequest: CloneTaxonomyRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloneTaxonomyResponse>>;
|
|
164
|
+
/**
|
|
165
|
+
* Promote a document selection (e.g. a lasso/cluster selection in the cluster visualization) into a NEW flat taxonomy in one call. Creates, in order: 1. a **node collection** mirroring the selection\'s vector index (same vector name, dimensions, and feature_uri — no re-embedding, no GPU work), 2. a **vector-search retriever** over it, 3. the **flat taxonomy** wired to both (input_mappings map an incoming document\'s stored embedding onto the retriever), 4. the **first node**: a document whose anchor vector is the centroid of the referenced documents\' stored vectors, labeled `node_label`. Documents enriched through the taxonomy afterwards are labeled with the nearest node\'s `label`. To add more nodes later, use `POST /v1/taxonomies/{taxonomy_id}/nodes/from-documents`. Resources created before a failing step are cleaned up best-effort.
|
|
166
|
+
* @summary Create a taxonomy from a document selection (one gesture)
|
|
167
|
+
* @param {CreateTaxonomyFromDocumentsRequest} createTaxonomyFromDocumentsRequest
|
|
168
|
+
* @param {*} [options] Override http request option.
|
|
169
|
+
* @throws {RequiredError}
|
|
170
|
+
*/
|
|
171
|
+
createTaxonomyFromDocumentsTaxonomies(createTaxonomyFromDocumentsRequest: CreateTaxonomyFromDocumentsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaxonomyNodeFromDocumentsResponse>>;
|
|
172
|
+
/**
|
|
173
|
+
* Add a node to an existing **flat** taxonomy from a document selection. The node is an ordinary document in the taxonomy\'s node (source) collection: its anchor vector is the **centroid of the referenced documents\' stored vectors** and its `label` is `node_label`. Future documents enriched through this taxonomy are labeled with the nearest node\'s `label`. Only stored vectors are read — no re-embedding or GPU work. Documents that can\'t contribute (missing, no matching vector) are skipped and reported in `documents_skipped`; the call fails only when NO document contributes. Hierarchical taxonomies are not supported here (their nodes are whole collections) — the error points you to the flat-taxonomy path.
|
|
174
|
+
* @summary Add a taxonomy node derived from a document selection
|
|
175
|
+
* @param {string} taxonomyIdentifier Taxonomy ID or name
|
|
176
|
+
* @param {CreateNodeFromDocumentsRequest} createNodeFromDocumentsRequest
|
|
177
|
+
* @param {*} [options] Override http request option.
|
|
178
|
+
* @throws {RequiredError}
|
|
179
|
+
*/
|
|
180
|
+
createTaxonomyNodeFromDocumentsTaxonomies(taxonomyIdentifier: string, createNodeFromDocumentsRequest: CreateNodeFromDocumentsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaxonomyNodeFromDocumentsResponse>>;
|
|
144
181
|
/**
|
|
145
182
|
* Create a taxonomy and return the created resource.
|
|
146
183
|
* @summary Create Taxonomy
|
|
@@ -246,6 +283,22 @@ export declare const TaxonomiesApiFactory: (configuration?: Configuration, baseP
|
|
|
246
283
|
* @throws {RequiredError}
|
|
247
284
|
*/
|
|
248
285
|
cloneTaxonomyTaxonomies(requestParameters: TaxonomiesApiCloneTaxonomyTaxonomiesRequest, options?: RawAxiosRequestConfig): AxiosPromise<CloneTaxonomyResponse>;
|
|
286
|
+
/**
|
|
287
|
+
* Promote a document selection (e.g. a lasso/cluster selection in the cluster visualization) into a NEW flat taxonomy in one call. Creates, in order: 1. a **node collection** mirroring the selection\'s vector index (same vector name, dimensions, and feature_uri — no re-embedding, no GPU work), 2. a **vector-search retriever** over it, 3. the **flat taxonomy** wired to both (input_mappings map an incoming document\'s stored embedding onto the retriever), 4. the **first node**: a document whose anchor vector is the centroid of the referenced documents\' stored vectors, labeled `node_label`. Documents enriched through the taxonomy afterwards are labeled with the nearest node\'s `label`. To add more nodes later, use `POST /v1/taxonomies/{taxonomy_id}/nodes/from-documents`. Resources created before a failing step are cleaned up best-effort.
|
|
288
|
+
* @summary Create a taxonomy from a document selection (one gesture)
|
|
289
|
+
* @param {TaxonomiesApiCreateTaxonomyFromDocumentsTaxonomiesRequest} requestParameters Request parameters.
|
|
290
|
+
* @param {*} [options] Override http request option.
|
|
291
|
+
* @throws {RequiredError}
|
|
292
|
+
*/
|
|
293
|
+
createTaxonomyFromDocumentsTaxonomies(requestParameters: TaxonomiesApiCreateTaxonomyFromDocumentsTaxonomiesRequest, options?: RawAxiosRequestConfig): AxiosPromise<TaxonomyNodeFromDocumentsResponse>;
|
|
294
|
+
/**
|
|
295
|
+
* Add a node to an existing **flat** taxonomy from a document selection. The node is an ordinary document in the taxonomy\'s node (source) collection: its anchor vector is the **centroid of the referenced documents\' stored vectors** and its `label` is `node_label`. Future documents enriched through this taxonomy are labeled with the nearest node\'s `label`. Only stored vectors are read — no re-embedding or GPU work. Documents that can\'t contribute (missing, no matching vector) are skipped and reported in `documents_skipped`; the call fails only when NO document contributes. Hierarchical taxonomies are not supported here (their nodes are whole collections) — the error points you to the flat-taxonomy path.
|
|
296
|
+
* @summary Add a taxonomy node derived from a document selection
|
|
297
|
+
* @param {TaxonomiesApiCreateTaxonomyNodeFromDocumentsTaxonomiesRequest} requestParameters Request parameters.
|
|
298
|
+
* @param {*} [options] Override http request option.
|
|
299
|
+
* @throws {RequiredError}
|
|
300
|
+
*/
|
|
301
|
+
createTaxonomyNodeFromDocumentsTaxonomies(requestParameters: TaxonomiesApiCreateTaxonomyNodeFromDocumentsTaxonomiesRequest, options?: RawAxiosRequestConfig): AxiosPromise<TaxonomyNodeFromDocumentsResponse>;
|
|
249
302
|
/**
|
|
250
303
|
* Create a taxonomy and return the created resource.
|
|
251
304
|
* @summary Create Taxonomy
|
|
@@ -338,6 +391,38 @@ export interface TaxonomiesApiCloneTaxonomyTaxonomiesRequest {
|
|
|
338
391
|
*/
|
|
339
392
|
readonly cloneTaxonomyRequest: CloneTaxonomyRequest;
|
|
340
393
|
}
|
|
394
|
+
/**
|
|
395
|
+
* Request parameters for createTaxonomyFromDocumentsTaxonomies operation in TaxonomiesApi.
|
|
396
|
+
* @export
|
|
397
|
+
* @interface TaxonomiesApiCreateTaxonomyFromDocumentsTaxonomiesRequest
|
|
398
|
+
*/
|
|
399
|
+
export interface TaxonomiesApiCreateTaxonomyFromDocumentsTaxonomiesRequest {
|
|
400
|
+
/**
|
|
401
|
+
*
|
|
402
|
+
* @type {CreateTaxonomyFromDocumentsRequest}
|
|
403
|
+
* @memberof TaxonomiesApiCreateTaxonomyFromDocumentsTaxonomies
|
|
404
|
+
*/
|
|
405
|
+
readonly createTaxonomyFromDocumentsRequest: CreateTaxonomyFromDocumentsRequest;
|
|
406
|
+
}
|
|
407
|
+
/**
|
|
408
|
+
* Request parameters for createTaxonomyNodeFromDocumentsTaxonomies operation in TaxonomiesApi.
|
|
409
|
+
* @export
|
|
410
|
+
* @interface TaxonomiesApiCreateTaxonomyNodeFromDocumentsTaxonomiesRequest
|
|
411
|
+
*/
|
|
412
|
+
export interface TaxonomiesApiCreateTaxonomyNodeFromDocumentsTaxonomiesRequest {
|
|
413
|
+
/**
|
|
414
|
+
* Taxonomy ID or name
|
|
415
|
+
* @type {string}
|
|
416
|
+
* @memberof TaxonomiesApiCreateTaxonomyNodeFromDocumentsTaxonomies
|
|
417
|
+
*/
|
|
418
|
+
readonly taxonomyIdentifier: string;
|
|
419
|
+
/**
|
|
420
|
+
*
|
|
421
|
+
* @type {CreateNodeFromDocumentsRequest}
|
|
422
|
+
* @memberof TaxonomiesApiCreateTaxonomyNodeFromDocumentsTaxonomies
|
|
423
|
+
*/
|
|
424
|
+
readonly createNodeFromDocumentsRequest: CreateNodeFromDocumentsRequest;
|
|
425
|
+
}
|
|
341
426
|
/**
|
|
342
427
|
* Request parameters for createTaxonomyTaxonomies operation in TaxonomiesApi.
|
|
343
428
|
* @export
|
|
@@ -575,6 +660,24 @@ export declare class TaxonomiesApi extends BaseAPI {
|
|
|
575
660
|
* @memberof TaxonomiesApi
|
|
576
661
|
*/
|
|
577
662
|
cloneTaxonomyTaxonomies(requestParameters: TaxonomiesApiCloneTaxonomyTaxonomiesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CloneTaxonomyResponse, any, {}>>;
|
|
663
|
+
/**
|
|
664
|
+
* Promote a document selection (e.g. a lasso/cluster selection in the cluster visualization) into a NEW flat taxonomy in one call. Creates, in order: 1. a **node collection** mirroring the selection\'s vector index (same vector name, dimensions, and feature_uri — no re-embedding, no GPU work), 2. a **vector-search retriever** over it, 3. the **flat taxonomy** wired to both (input_mappings map an incoming document\'s stored embedding onto the retriever), 4. the **first node**: a document whose anchor vector is the centroid of the referenced documents\' stored vectors, labeled `node_label`. Documents enriched through the taxonomy afterwards are labeled with the nearest node\'s `label`. To add more nodes later, use `POST /v1/taxonomies/{taxonomy_id}/nodes/from-documents`. Resources created before a failing step are cleaned up best-effort.
|
|
665
|
+
* @summary Create a taxonomy from a document selection (one gesture)
|
|
666
|
+
* @param {TaxonomiesApiCreateTaxonomyFromDocumentsTaxonomiesRequest} requestParameters Request parameters.
|
|
667
|
+
* @param {*} [options] Override http request option.
|
|
668
|
+
* @throws {RequiredError}
|
|
669
|
+
* @memberof TaxonomiesApi
|
|
670
|
+
*/
|
|
671
|
+
createTaxonomyFromDocumentsTaxonomies(requestParameters: TaxonomiesApiCreateTaxonomyFromDocumentsTaxonomiesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaxonomyNodeFromDocumentsResponse, any, {}>>;
|
|
672
|
+
/**
|
|
673
|
+
* Add a node to an existing **flat** taxonomy from a document selection. The node is an ordinary document in the taxonomy\'s node (source) collection: its anchor vector is the **centroid of the referenced documents\' stored vectors** and its `label` is `node_label`. Future documents enriched through this taxonomy are labeled with the nearest node\'s `label`. Only stored vectors are read — no re-embedding or GPU work. Documents that can\'t contribute (missing, no matching vector) are skipped and reported in `documents_skipped`; the call fails only when NO document contributes. Hierarchical taxonomies are not supported here (their nodes are whole collections) — the error points you to the flat-taxonomy path.
|
|
674
|
+
* @summary Add a taxonomy node derived from a document selection
|
|
675
|
+
* @param {TaxonomiesApiCreateTaxonomyNodeFromDocumentsTaxonomiesRequest} requestParameters Request parameters.
|
|
676
|
+
* @param {*} [options] Override http request option.
|
|
677
|
+
* @throws {RequiredError}
|
|
678
|
+
* @memberof TaxonomiesApi
|
|
679
|
+
*/
|
|
680
|
+
createTaxonomyNodeFromDocumentsTaxonomies(requestParameters: TaxonomiesApiCreateTaxonomyNodeFromDocumentsTaxonomiesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaxonomyNodeFromDocumentsResponse, any, {}>>;
|
|
578
681
|
/**
|
|
579
682
|
* Create a taxonomy and return the created resource.
|
|
580
683
|
* @summary Create Taxonomy
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taxonomies-api.d.ts","sourceRoot":"","sources":["../../api/taxonomies-api.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"taxonomies-api.d.ts","sourceRoot":"","sources":["../../api/taxonomies-api.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -16728,6 +16728,64 @@ var TaxonomiesApiAxiosParamCreator = function(configuration) {
|
|
|
16728
16728
|
options: localVarRequestOptions
|
|
16729
16729
|
};
|
|
16730
16730
|
},
|
|
16731
|
+
/**
|
|
16732
|
+
* Promote a document selection (e.g. a lasso/cluster selection in the cluster visualization) into a NEW flat taxonomy in one call. Creates, in order: 1. a **node collection** mirroring the selection\'s vector index (same vector name, dimensions, and feature_uri — no re-embedding, no GPU work), 2. a **vector-search retriever** over it, 3. the **flat taxonomy** wired to both (input_mappings map an incoming document\'s stored embedding onto the retriever), 4. the **first node**: a document whose anchor vector is the centroid of the referenced documents\' stored vectors, labeled `node_label`. Documents enriched through the taxonomy afterwards are labeled with the nearest node\'s `label`. To add more nodes later, use `POST /v1/taxonomies/{taxonomy_id}/nodes/from-documents`. Resources created before a failing step are cleaned up best-effort.
|
|
16733
|
+
* @summary Create a taxonomy from a document selection (one gesture)
|
|
16734
|
+
* @param {CreateTaxonomyFromDocumentsRequest} createTaxonomyFromDocumentsRequest
|
|
16735
|
+
* @param {*} [options] Override http request option.
|
|
16736
|
+
* @throws {RequiredError}
|
|
16737
|
+
*/
|
|
16738
|
+
createTaxonomyFromDocumentsTaxonomies: async (createTaxonomyFromDocumentsRequest, options = {}) => {
|
|
16739
|
+
assertParamExists("createTaxonomyFromDocumentsTaxonomies", "createTaxonomyFromDocumentsRequest", createTaxonomyFromDocumentsRequest);
|
|
16740
|
+
const localVarPath = `/v1/taxonomies/from-documents`;
|
|
16741
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16742
|
+
let baseOptions;
|
|
16743
|
+
if (configuration) {
|
|
16744
|
+
baseOptions = configuration.baseOptions;
|
|
16745
|
+
}
|
|
16746
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
16747
|
+
const localVarHeaderParameter = {};
|
|
16748
|
+
const localVarQueryParameter = {};
|
|
16749
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
16750
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16751
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16752
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
16753
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createTaxonomyFromDocumentsRequest, localVarRequestOptions, configuration);
|
|
16754
|
+
return {
|
|
16755
|
+
url: toPathString(localVarUrlObj),
|
|
16756
|
+
options: localVarRequestOptions
|
|
16757
|
+
};
|
|
16758
|
+
},
|
|
16759
|
+
/**
|
|
16760
|
+
* Add a node to an existing **flat** taxonomy from a document selection. The node is an ordinary document in the taxonomy\'s node (source) collection: its anchor vector is the **centroid of the referenced documents\' stored vectors** and its `label` is `node_label`. Future documents enriched through this taxonomy are labeled with the nearest node\'s `label`. Only stored vectors are read — no re-embedding or GPU work. Documents that can\'t contribute (missing, no matching vector) are skipped and reported in `documents_skipped`; the call fails only when NO document contributes. Hierarchical taxonomies are not supported here (their nodes are whole collections) — the error points you to the flat-taxonomy path.
|
|
16761
|
+
* @summary Add a taxonomy node derived from a document selection
|
|
16762
|
+
* @param {string} taxonomyIdentifier Taxonomy ID or name
|
|
16763
|
+
* @param {CreateNodeFromDocumentsRequest} createNodeFromDocumentsRequest
|
|
16764
|
+
* @param {*} [options] Override http request option.
|
|
16765
|
+
* @throws {RequiredError}
|
|
16766
|
+
*/
|
|
16767
|
+
createTaxonomyNodeFromDocumentsTaxonomies: async (taxonomyIdentifier, createNodeFromDocumentsRequest, options = {}) => {
|
|
16768
|
+
assertParamExists("createTaxonomyNodeFromDocumentsTaxonomies", "taxonomyIdentifier", taxonomyIdentifier);
|
|
16769
|
+
assertParamExists("createTaxonomyNodeFromDocumentsTaxonomies", "createNodeFromDocumentsRequest", createNodeFromDocumentsRequest);
|
|
16770
|
+
const localVarPath = `/v1/taxonomies/{taxonomy_identifier}/nodes/from-documents`.replace(`{${"taxonomy_identifier"}}`, encodeURIComponent(String(taxonomyIdentifier)));
|
|
16771
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16772
|
+
let baseOptions;
|
|
16773
|
+
if (configuration) {
|
|
16774
|
+
baseOptions = configuration.baseOptions;
|
|
16775
|
+
}
|
|
16776
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
16777
|
+
const localVarHeaderParameter = {};
|
|
16778
|
+
const localVarQueryParameter = {};
|
|
16779
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
16780
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16781
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16782
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
16783
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createNodeFromDocumentsRequest, localVarRequestOptions, configuration);
|
|
16784
|
+
return {
|
|
16785
|
+
url: toPathString(localVarUrlObj),
|
|
16786
|
+
options: localVarRequestOptions
|
|
16787
|
+
};
|
|
16788
|
+
},
|
|
16731
16789
|
/**
|
|
16732
16790
|
* Create a taxonomy and return the created resource.
|
|
16733
16791
|
* @summary Create Taxonomy
|
|
@@ -17053,6 +17111,33 @@ var TaxonomiesApiFp = function(configuration) {
|
|
|
17053
17111
|
const localVarOperationServerBasePath = operationServerMap["TaxonomiesApi.cloneTaxonomyTaxonomies"]?.[localVarOperationServerIndex]?.url;
|
|
17054
17112
|
return (axios2, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios5__default.default, BASE_PATH, configuration)(axios2, localVarOperationServerBasePath || basePath);
|
|
17055
17113
|
},
|
|
17114
|
+
/**
|
|
17115
|
+
* Promote a document selection (e.g. a lasso/cluster selection in the cluster visualization) into a NEW flat taxonomy in one call. Creates, in order: 1. a **node collection** mirroring the selection\'s vector index (same vector name, dimensions, and feature_uri — no re-embedding, no GPU work), 2. a **vector-search retriever** over it, 3. the **flat taxonomy** wired to both (input_mappings map an incoming document\'s stored embedding onto the retriever), 4. the **first node**: a document whose anchor vector is the centroid of the referenced documents\' stored vectors, labeled `node_label`. Documents enriched through the taxonomy afterwards are labeled with the nearest node\'s `label`. To add more nodes later, use `POST /v1/taxonomies/{taxonomy_id}/nodes/from-documents`. Resources created before a failing step are cleaned up best-effort.
|
|
17116
|
+
* @summary Create a taxonomy from a document selection (one gesture)
|
|
17117
|
+
* @param {CreateTaxonomyFromDocumentsRequest} createTaxonomyFromDocumentsRequest
|
|
17118
|
+
* @param {*} [options] Override http request option.
|
|
17119
|
+
* @throws {RequiredError}
|
|
17120
|
+
*/
|
|
17121
|
+
async createTaxonomyFromDocumentsTaxonomies(createTaxonomyFromDocumentsRequest, options) {
|
|
17122
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createTaxonomyFromDocumentsTaxonomies(createTaxonomyFromDocumentsRequest, options);
|
|
17123
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
17124
|
+
const localVarOperationServerBasePath = operationServerMap["TaxonomiesApi.createTaxonomyFromDocumentsTaxonomies"]?.[localVarOperationServerIndex]?.url;
|
|
17125
|
+
return (axios2, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios5__default.default, BASE_PATH, configuration)(axios2, localVarOperationServerBasePath || basePath);
|
|
17126
|
+
},
|
|
17127
|
+
/**
|
|
17128
|
+
* Add a node to an existing **flat** taxonomy from a document selection. The node is an ordinary document in the taxonomy\'s node (source) collection: its anchor vector is the **centroid of the referenced documents\' stored vectors** and its `label` is `node_label`. Future documents enriched through this taxonomy are labeled with the nearest node\'s `label`. Only stored vectors are read — no re-embedding or GPU work. Documents that can\'t contribute (missing, no matching vector) are skipped and reported in `documents_skipped`; the call fails only when NO document contributes. Hierarchical taxonomies are not supported here (their nodes are whole collections) — the error points you to the flat-taxonomy path.
|
|
17129
|
+
* @summary Add a taxonomy node derived from a document selection
|
|
17130
|
+
* @param {string} taxonomyIdentifier Taxonomy ID or name
|
|
17131
|
+
* @param {CreateNodeFromDocumentsRequest} createNodeFromDocumentsRequest
|
|
17132
|
+
* @param {*} [options] Override http request option.
|
|
17133
|
+
* @throws {RequiredError}
|
|
17134
|
+
*/
|
|
17135
|
+
async createTaxonomyNodeFromDocumentsTaxonomies(taxonomyIdentifier, createNodeFromDocumentsRequest, options) {
|
|
17136
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createTaxonomyNodeFromDocumentsTaxonomies(taxonomyIdentifier, createNodeFromDocumentsRequest, options);
|
|
17137
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
17138
|
+
const localVarOperationServerBasePath = operationServerMap["TaxonomiesApi.createTaxonomyNodeFromDocumentsTaxonomies"]?.[localVarOperationServerIndex]?.url;
|
|
17139
|
+
return (axios2, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios5__default.default, BASE_PATH, configuration)(axios2, localVarOperationServerBasePath || basePath);
|
|
17140
|
+
},
|
|
17056
17141
|
/**
|
|
17057
17142
|
* Create a taxonomy and return the created resource.
|
|
17058
17143
|
* @summary Create Taxonomy
|
|
@@ -17201,6 +17286,28 @@ var TaxonomiesApi = class extends BaseAPI {
|
|
|
17201
17286
|
cloneTaxonomyTaxonomies(requestParameters, options) {
|
|
17202
17287
|
return TaxonomiesApiFp(this.configuration).cloneTaxonomyTaxonomies(requestParameters.taxonomyIdentifier, requestParameters.cloneTaxonomyRequest, options).then((request) => request(this.axios, this.basePath));
|
|
17203
17288
|
}
|
|
17289
|
+
/**
|
|
17290
|
+
* Promote a document selection (e.g. a lasso/cluster selection in the cluster visualization) into a NEW flat taxonomy in one call. Creates, in order: 1. a **node collection** mirroring the selection\'s vector index (same vector name, dimensions, and feature_uri — no re-embedding, no GPU work), 2. a **vector-search retriever** over it, 3. the **flat taxonomy** wired to both (input_mappings map an incoming document\'s stored embedding onto the retriever), 4. the **first node**: a document whose anchor vector is the centroid of the referenced documents\' stored vectors, labeled `node_label`. Documents enriched through the taxonomy afterwards are labeled with the nearest node\'s `label`. To add more nodes later, use `POST /v1/taxonomies/{taxonomy_id}/nodes/from-documents`. Resources created before a failing step are cleaned up best-effort.
|
|
17291
|
+
* @summary Create a taxonomy from a document selection (one gesture)
|
|
17292
|
+
* @param {TaxonomiesApiCreateTaxonomyFromDocumentsTaxonomiesRequest} requestParameters Request parameters.
|
|
17293
|
+
* @param {*} [options] Override http request option.
|
|
17294
|
+
* @throws {RequiredError}
|
|
17295
|
+
* @memberof TaxonomiesApi
|
|
17296
|
+
*/
|
|
17297
|
+
createTaxonomyFromDocumentsTaxonomies(requestParameters, options) {
|
|
17298
|
+
return TaxonomiesApiFp(this.configuration).createTaxonomyFromDocumentsTaxonomies(requestParameters.createTaxonomyFromDocumentsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
17299
|
+
}
|
|
17300
|
+
/**
|
|
17301
|
+
* Add a node to an existing **flat** taxonomy from a document selection. The node is an ordinary document in the taxonomy\'s node (source) collection: its anchor vector is the **centroid of the referenced documents\' stored vectors** and its `label` is `node_label`. Future documents enriched through this taxonomy are labeled with the nearest node\'s `label`. Only stored vectors are read — no re-embedding or GPU work. Documents that can\'t contribute (missing, no matching vector) are skipped and reported in `documents_skipped`; the call fails only when NO document contributes. Hierarchical taxonomies are not supported here (their nodes are whole collections) — the error points you to the flat-taxonomy path.
|
|
17302
|
+
* @summary Add a taxonomy node derived from a document selection
|
|
17303
|
+
* @param {TaxonomiesApiCreateTaxonomyNodeFromDocumentsTaxonomiesRequest} requestParameters Request parameters.
|
|
17304
|
+
* @param {*} [options] Override http request option.
|
|
17305
|
+
* @throws {RequiredError}
|
|
17306
|
+
* @memberof TaxonomiesApi
|
|
17307
|
+
*/
|
|
17308
|
+
createTaxonomyNodeFromDocumentsTaxonomies(requestParameters, options) {
|
|
17309
|
+
return TaxonomiesApiFp(this.configuration).createTaxonomyNodeFromDocumentsTaxonomies(requestParameters.taxonomyIdentifier, requestParameters.createNodeFromDocumentsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
17310
|
+
}
|
|
17204
17311
|
/**
|
|
17205
17312
|
* Create a taxonomy and return the created resource.
|
|
17206
17313
|
* @summary Create Taxonomy
|