mixpeek 0.81.66 → 0.81.68
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/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/vector-index-definition.d.ts +6 -0
- package/dist/models/vector-index-definition.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -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
|