@gooddata/api-client-tiger 11.26.0-alpha.1 → 11.26.0-alpha.3
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/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +59331 -58753
- package/esm/generated/afm-rest-api/api.d.ts +304 -28
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +162 -18
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/index.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/index.js.map +1 -1
- package/esm/generated/auth-json-api/index.d.ts.map +1 -1
- package/esm/generated/auth-json-api/index.js.map +1 -1
- package/esm/generated/automation-json-api/index.d.ts.map +1 -1
- package/esm/generated/automation-json-api/index.js.map +1 -1
- package/esm/generated/export-json-api/index.d.ts.map +1 -1
- package/esm/generated/export-json-api/index.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +40786 -40441
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +39019 -38840
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/index.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/index.js.map +1 -1
- package/esm/generated/result-json-api/index.d.ts.map +1 -1
- package/esm/generated/result-json-api/index.js.map +1 -1
- package/esm/generated/scan-json-api/index.d.ts.map +1 -1
- package/esm/generated/scan-json-api/index.js.map +1 -1
- package/package.json +5 -5
|
@@ -2411,7 +2411,7 @@ export async function ActionsApiAxiosParamCreator_PatchDocument(workspaceId, fil
|
|
|
2411
2411
|
}
|
|
2412
2412
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
2413
2413
|
/**
|
|
2414
|
-
*
|
|
2414
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
2415
2415
|
* @summary Get Active LLM Endpoints for this workspace
|
|
2416
2416
|
* @param {string} workspaceId Workspace identifier
|
|
2417
2417
|
* @param {*} [options] Override http request option.
|
|
@@ -2539,6 +2539,49 @@ export async function ActionsApiAxiosParamCreator_RetrieveResult(workspaceId, re
|
|
|
2539
2539
|
};
|
|
2540
2540
|
}
|
|
2541
2541
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
2542
|
+
/**
|
|
2543
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
2544
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
2545
|
+
* @param {string} workspaceId Workspace identifier
|
|
2546
|
+
* @param {string} resultId Result ID
|
|
2547
|
+
* @param {string} [xGDCCANCELTOKEN]
|
|
2548
|
+
* @param {*} [options] Override http request option.
|
|
2549
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2550
|
+
* @throws {RequiredError}
|
|
2551
|
+
*/
|
|
2552
|
+
export async function ActionsApiAxiosParamCreator_RetrieveResultBinary(workspaceId, resultId, xGDCCANCELTOKEN, options = {}, configuration) {
|
|
2553
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
2554
|
+
assertParamExists('retrieveResultBinary', 'workspaceId', workspaceId);
|
|
2555
|
+
// verify required parameter 'resultId' is not null or undefined
|
|
2556
|
+
assertParamExists('retrieveResultBinary', 'resultId', resultId);
|
|
2557
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/execution/afm/execute/result/{resultId}/binary`
|
|
2558
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
2559
|
+
.replace(`{${"resultId"}}`, encodeURIComponent(String(resultId)));
|
|
2560
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2561
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2562
|
+
let baseOptions;
|
|
2563
|
+
if (configuration) {
|
|
2564
|
+
baseOptions = configuration.baseOptions;
|
|
2565
|
+
}
|
|
2566
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
2567
|
+
const localVarHeaderParameter = {};
|
|
2568
|
+
const localVarQueryParameter = {};
|
|
2569
|
+
if (xGDCCANCELTOKEN !== undefined && xGDCCANCELTOKEN !== null) {
|
|
2570
|
+
localVarHeaderParameter['X-GDC-CANCEL-TOKEN'] = String(xGDCCANCELTOKEN);
|
|
2571
|
+
}
|
|
2572
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2573
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
2574
|
+
localVarRequestOptions.headers = {
|
|
2575
|
+
...localVarHeaderParameter,
|
|
2576
|
+
...headersFromBaseOptions,
|
|
2577
|
+
...options.headers,
|
|
2578
|
+
};
|
|
2579
|
+
return {
|
|
2580
|
+
url: toPathString(localVarUrlObj),
|
|
2581
|
+
options: localVarRequestOptions,
|
|
2582
|
+
};
|
|
2583
|
+
}
|
|
2584
|
+
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
2542
2585
|
/**
|
|
2543
2586
|
*
|
|
2544
2587
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -2840,7 +2883,7 @@ export async function ActionsApiAxiosParamCreator_UpsertDocument(workspaceId, up
|
|
|
2840
2883
|
}
|
|
2841
2884
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
2842
2885
|
/**
|
|
2843
|
-
*
|
|
2886
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
2844
2887
|
* @summary Validate LLM Endpoint
|
|
2845
2888
|
* @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
|
|
2846
2889
|
* @param {*} [options] Override http request option.
|
|
@@ -2886,7 +2929,7 @@ export async function ActionsApiAxiosParamCreator_ValidateLLMEndpoint(validateLL
|
|
|
2886
2929
|
}
|
|
2887
2930
|
// ActionsApi FP - ActionsApiAxiosParamCreator
|
|
2888
2931
|
/**
|
|
2889
|
-
*
|
|
2932
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
2890
2933
|
* @summary Validate LLM Endpoint By Id
|
|
2891
2934
|
* @param {string} llmEndpointId
|
|
2892
2935
|
* @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
|
|
@@ -3511,7 +3554,7 @@ export async function ActionsApi_PatchDocument(axios, basePath, requestParameter
|
|
|
3511
3554
|
}
|
|
3512
3555
|
// ActionsApi Api FP
|
|
3513
3556
|
/**
|
|
3514
|
-
*
|
|
3557
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
3515
3558
|
* @summary Get Active LLM Endpoints for this workspace
|
|
3516
3559
|
* @param {AxiosInstance} axios Axios instance.
|
|
3517
3560
|
* @param {string} basePath Base path.
|
|
@@ -3555,6 +3598,21 @@ export async function ActionsApi_RetrieveResult(axios, basePath, requestParamete
|
|
|
3555
3598
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
3556
3599
|
}
|
|
3557
3600
|
// ActionsApi Api FP
|
|
3601
|
+
/**
|
|
3602
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
3603
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
3604
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
3605
|
+
* @param {string} basePath Base path.
|
|
3606
|
+
* @param {ActionsApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
3607
|
+
* @param {*} [options] Override http request option.
|
|
3608
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3609
|
+
* @throws {RequiredError}
|
|
3610
|
+
*/
|
|
3611
|
+
export async function ActionsApi_RetrieveResultBinary(axios, basePath, requestParameters, options, configuration) {
|
|
3612
|
+
const localVarAxiosArgs = await ActionsApiAxiosParamCreator_RetrieveResultBinary(requestParameters.workspaceId, requestParameters.resultId, requestParameters.xGDCCANCELTOKEN, options || {}, configuration);
|
|
3613
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
3614
|
+
}
|
|
3615
|
+
// ActionsApi Api FP
|
|
3558
3616
|
/**
|
|
3559
3617
|
*
|
|
3560
3618
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -3659,7 +3717,7 @@ export async function ActionsApi_UpsertDocument(axios, basePath, requestParamete
|
|
|
3659
3717
|
}
|
|
3660
3718
|
// ActionsApi Api FP
|
|
3661
3719
|
/**
|
|
3662
|
-
*
|
|
3720
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
3663
3721
|
* @summary Validate LLM Endpoint
|
|
3664
3722
|
* @param {AxiosInstance} axios Axios instance.
|
|
3665
3723
|
* @param {string} basePath Base path.
|
|
@@ -3674,7 +3732,7 @@ export async function ActionsApi_ValidateLLMEndpoint(axios, basePath, requestPar
|
|
|
3674
3732
|
}
|
|
3675
3733
|
// ActionsApi Api FP
|
|
3676
3734
|
/**
|
|
3677
|
-
*
|
|
3735
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
3678
3736
|
* @summary Validate LLM Endpoint By Id
|
|
3679
3737
|
* @param {AxiosInstance} axios Axios instance.
|
|
3680
3738
|
* @param {string} basePath Base path.
|
|
@@ -4116,10 +4174,11 @@ export class ActionsApi extends BaseAPI {
|
|
|
4116
4174
|
return ActionsApi_PatchDocument(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
4117
4175
|
}
|
|
4118
4176
|
/**
|
|
4119
|
-
*
|
|
4177
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
4120
4178
|
* @summary Get Active LLM Endpoints for this workspace
|
|
4121
4179
|
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
4122
4180
|
* @param {*} [options] Override http request option.
|
|
4181
|
+
* @deprecated
|
|
4123
4182
|
* @throws {RequiredError}
|
|
4124
4183
|
* @memberof ActionsApi
|
|
4125
4184
|
*/
|
|
@@ -4148,6 +4207,17 @@ export class ActionsApi extends BaseAPI {
|
|
|
4148
4207
|
retrieveResult(requestParameters, options) {
|
|
4149
4208
|
return ActionsApi_RetrieveResult(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
4150
4209
|
}
|
|
4210
|
+
/**
|
|
4211
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
4212
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
4213
|
+
* @param {ActionsApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
4214
|
+
* @param {*} [options] Override http request option.
|
|
4215
|
+
* @throws {RequiredError}
|
|
4216
|
+
* @memberof ActionsApi
|
|
4217
|
+
*/
|
|
4218
|
+
retrieveResultBinary(requestParameters, options) {
|
|
4219
|
+
return ActionsApi_RetrieveResultBinary(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
4220
|
+
}
|
|
4151
4221
|
/**
|
|
4152
4222
|
*
|
|
4153
4223
|
* @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
|
|
@@ -4224,10 +4294,11 @@ export class ActionsApi extends BaseAPI {
|
|
|
4224
4294
|
return ActionsApi_UpsertDocument(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
4225
4295
|
}
|
|
4226
4296
|
/**
|
|
4227
|
-
*
|
|
4297
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
4228
4298
|
* @summary Validate LLM Endpoint
|
|
4229
4299
|
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
4230
4300
|
* @param {*} [options] Override http request option.
|
|
4301
|
+
* @deprecated
|
|
4231
4302
|
* @throws {RequiredError}
|
|
4232
4303
|
* @memberof ActionsApi
|
|
4233
4304
|
*/
|
|
@@ -4235,10 +4306,11 @@ export class ActionsApi extends BaseAPI {
|
|
|
4235
4306
|
return ActionsApi_ValidateLLMEndpoint(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
4236
4307
|
}
|
|
4237
4308
|
/**
|
|
4238
|
-
*
|
|
4309
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
4239
4310
|
* @summary Validate LLM Endpoint By Id
|
|
4240
4311
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
4241
4312
|
* @param {*} [options] Override http request option.
|
|
4313
|
+
* @deprecated
|
|
4242
4314
|
* @throws {RequiredError}
|
|
4243
4315
|
* @memberof ActionsApi
|
|
4244
4316
|
*/
|
|
@@ -4955,6 +5027,49 @@ export async function ComputationApiAxiosParamCreator_RetrieveResult(workspaceId
|
|
|
4955
5027
|
options: localVarRequestOptions,
|
|
4956
5028
|
};
|
|
4957
5029
|
}
|
|
5030
|
+
// ComputationApi FP - ComputationApiAxiosParamCreator
|
|
5031
|
+
/**
|
|
5032
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
5033
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
5034
|
+
* @param {string} workspaceId Workspace identifier
|
|
5035
|
+
* @param {string} resultId Result ID
|
|
5036
|
+
* @param {string} [xGDCCANCELTOKEN]
|
|
5037
|
+
* @param {*} [options] Override http request option.
|
|
5038
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5039
|
+
* @throws {RequiredError}
|
|
5040
|
+
*/
|
|
5041
|
+
export async function ComputationApiAxiosParamCreator_RetrieveResultBinary(workspaceId, resultId, xGDCCANCELTOKEN, options = {}, configuration) {
|
|
5042
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
5043
|
+
assertParamExists('retrieveResultBinary', 'workspaceId', workspaceId);
|
|
5044
|
+
// verify required parameter 'resultId' is not null or undefined
|
|
5045
|
+
assertParamExists('retrieveResultBinary', 'resultId', resultId);
|
|
5046
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/execution/afm/execute/result/{resultId}/binary`
|
|
5047
|
+
.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)))
|
|
5048
|
+
.replace(`{${"resultId"}}`, encodeURIComponent(String(resultId)));
|
|
5049
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5050
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5051
|
+
let baseOptions;
|
|
5052
|
+
if (configuration) {
|
|
5053
|
+
baseOptions = configuration.baseOptions;
|
|
5054
|
+
}
|
|
5055
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
5056
|
+
const localVarHeaderParameter = {};
|
|
5057
|
+
const localVarQueryParameter = {};
|
|
5058
|
+
if (xGDCCANCELTOKEN !== undefined && xGDCCANCELTOKEN !== null) {
|
|
5059
|
+
localVarHeaderParameter['X-GDC-CANCEL-TOKEN'] = String(xGDCCANCELTOKEN);
|
|
5060
|
+
}
|
|
5061
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5062
|
+
const headersFromBaseOptions = baseOptions?.headers ? baseOptions.headers : {};
|
|
5063
|
+
localVarRequestOptions.headers = {
|
|
5064
|
+
...localVarHeaderParameter,
|
|
5065
|
+
...headersFromBaseOptions,
|
|
5066
|
+
...options.headers,
|
|
5067
|
+
};
|
|
5068
|
+
return {
|
|
5069
|
+
url: toPathString(localVarUrlObj),
|
|
5070
|
+
options: localVarRequestOptions,
|
|
5071
|
+
};
|
|
5072
|
+
}
|
|
4958
5073
|
// ComputationApi Api FP
|
|
4959
5074
|
/**
|
|
4960
5075
|
* Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is cancelled.
|
|
@@ -5165,6 +5280,21 @@ export async function ComputationApi_RetrieveResult(axios, basePath, requestPara
|
|
|
5165
5280
|
const localVarAxiosArgs = await ComputationApiAxiosParamCreator_RetrieveResult(requestParameters.workspaceId, requestParameters.resultId, requestParameters.offset, requestParameters.limit, requestParameters.excludedTotalDimensions, requestParameters.xGDCCANCELTOKEN, options || {}, configuration);
|
|
5166
5281
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5167
5282
|
}
|
|
5283
|
+
// ComputationApi Api FP
|
|
5284
|
+
/**
|
|
5285
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
5286
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
5287
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5288
|
+
* @param {string} basePath Base path.
|
|
5289
|
+
* @param {ComputationApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
5290
|
+
* @param {*} [options] Override http request option.
|
|
5291
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5292
|
+
* @throws {RequiredError}
|
|
5293
|
+
*/
|
|
5294
|
+
export async function ComputationApi_RetrieveResultBinary(axios, basePath, requestParameters, options, configuration) {
|
|
5295
|
+
const localVarAxiosArgs = await ComputationApiAxiosParamCreator_RetrieveResultBinary(requestParameters.workspaceId, requestParameters.resultId, requestParameters.xGDCCANCELTOKEN, options || {}, configuration);
|
|
5296
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, basePath);
|
|
5297
|
+
}
|
|
5168
5298
|
/**
|
|
5169
5299
|
* ComputationApi - object-oriented interface
|
|
5170
5300
|
* @export
|
|
@@ -5326,6 +5456,17 @@ export class ComputationApi extends BaseAPI {
|
|
|
5326
5456
|
retrieveResult(requestParameters, options) {
|
|
5327
5457
|
return ComputationApi_RetrieveResult(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5328
5458
|
}
|
|
5459
|
+
/**
|
|
5460
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
5461
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
5462
|
+
* @param {ComputationApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
5463
|
+
* @param {*} [options] Override http request option.
|
|
5464
|
+
* @throws {RequiredError}
|
|
5465
|
+
* @memberof ComputationApi
|
|
5466
|
+
*/
|
|
5467
|
+
retrieveResultBinary(requestParameters, options) {
|
|
5468
|
+
return ComputationApi_RetrieveResultBinary(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
5469
|
+
}
|
|
5329
5470
|
}
|
|
5330
5471
|
// SmartFunctionsApi FP - SmartFunctionsApiAxiosParamCreator
|
|
5331
5472
|
/**
|
|
@@ -6204,7 +6345,7 @@ export async function SmartFunctionsApiAxiosParamCreator_MemoryCreatedByUsers(wo
|
|
|
6204
6345
|
}
|
|
6205
6346
|
// SmartFunctionsApi FP - SmartFunctionsApiAxiosParamCreator
|
|
6206
6347
|
/**
|
|
6207
|
-
*
|
|
6348
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
6208
6349
|
* @summary Get Active LLM Endpoints for this workspace
|
|
6209
6350
|
* @param {string} workspaceId Workspace identifier
|
|
6210
6351
|
* @param {*} [options] Override http request option.
|
|
@@ -6438,7 +6579,7 @@ export async function SmartFunctionsApiAxiosParamCreator_TriggerQualityIssuesCal
|
|
|
6438
6579
|
}
|
|
6439
6580
|
// SmartFunctionsApi FP - SmartFunctionsApiAxiosParamCreator
|
|
6440
6581
|
/**
|
|
6441
|
-
*
|
|
6582
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
6442
6583
|
* @summary Validate LLM Endpoint
|
|
6443
6584
|
* @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
|
|
6444
6585
|
* @param {*} [options] Override http request option.
|
|
@@ -6484,7 +6625,7 @@ export async function SmartFunctionsApiAxiosParamCreator_ValidateLLMEndpoint(val
|
|
|
6484
6625
|
}
|
|
6485
6626
|
// SmartFunctionsApi FP - SmartFunctionsApiAxiosParamCreator
|
|
6486
6627
|
/**
|
|
6487
|
-
*
|
|
6628
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
6488
6629
|
* @summary Validate LLM Endpoint By Id
|
|
6489
6630
|
* @param {string} llmEndpointId
|
|
6490
6631
|
* @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
|
|
@@ -6817,7 +6958,7 @@ export async function SmartFunctionsApi_MemoryCreatedByUsers(axios, basePath, re
|
|
|
6817
6958
|
}
|
|
6818
6959
|
// SmartFunctionsApi Api FP
|
|
6819
6960
|
/**
|
|
6820
|
-
*
|
|
6961
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
6821
6962
|
* @summary Get Active LLM Endpoints for this workspace
|
|
6822
6963
|
* @param {AxiosInstance} axios Axios instance.
|
|
6823
6964
|
* @param {string} basePath Base path.
|
|
@@ -6907,7 +7048,7 @@ export async function SmartFunctionsApi_TriggerQualityIssuesCalculation(axios, b
|
|
|
6907
7048
|
}
|
|
6908
7049
|
// SmartFunctionsApi Api FP
|
|
6909
7050
|
/**
|
|
6910
|
-
*
|
|
7051
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
6911
7052
|
* @summary Validate LLM Endpoint
|
|
6912
7053
|
* @param {AxiosInstance} axios Axios instance.
|
|
6913
7054
|
* @param {string} basePath Base path.
|
|
@@ -6922,7 +7063,7 @@ export async function SmartFunctionsApi_ValidateLLMEndpoint(axios, basePath, req
|
|
|
6922
7063
|
}
|
|
6923
7064
|
// SmartFunctionsApi Api FP
|
|
6924
7065
|
/**
|
|
6925
|
-
*
|
|
7066
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
6926
7067
|
* @summary Validate LLM Endpoint By Id
|
|
6927
7068
|
* @param {AxiosInstance} axios Axios instance.
|
|
6928
7069
|
* @param {string} basePath Base path.
|
|
@@ -7152,10 +7293,11 @@ export class SmartFunctionsApi extends BaseAPI {
|
|
|
7152
7293
|
return SmartFunctionsApi_MemoryCreatedByUsers(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
7153
7294
|
}
|
|
7154
7295
|
/**
|
|
7155
|
-
*
|
|
7296
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
7156
7297
|
* @summary Get Active LLM Endpoints for this workspace
|
|
7157
7298
|
* @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
7158
7299
|
* @param {*} [options] Override http request option.
|
|
7300
|
+
* @deprecated
|
|
7159
7301
|
* @throws {RequiredError}
|
|
7160
7302
|
* @memberof SmartFunctionsApi
|
|
7161
7303
|
*/
|
|
@@ -7218,10 +7360,11 @@ export class SmartFunctionsApi extends BaseAPI {
|
|
|
7218
7360
|
return SmartFunctionsApi_TriggerQualityIssuesCalculation(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
7219
7361
|
}
|
|
7220
7362
|
/**
|
|
7221
|
-
*
|
|
7363
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
7222
7364
|
* @summary Validate LLM Endpoint
|
|
7223
7365
|
* @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
7224
7366
|
* @param {*} [options] Override http request option.
|
|
7367
|
+
* @deprecated
|
|
7225
7368
|
* @throws {RequiredError}
|
|
7226
7369
|
* @memberof SmartFunctionsApi
|
|
7227
7370
|
*/
|
|
@@ -7229,10 +7372,11 @@ export class SmartFunctionsApi extends BaseAPI {
|
|
|
7229
7372
|
return SmartFunctionsApi_ValidateLLMEndpoint(this.axios, this.basePath, requestParameters, options, this.configuration);
|
|
7230
7373
|
}
|
|
7231
7374
|
/**
|
|
7232
|
-
*
|
|
7375
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
7233
7376
|
* @summary Validate LLM Endpoint By Id
|
|
7234
7377
|
* @param {SmartFunctionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
7235
7378
|
* @param {*} [options] Override http request option.
|
|
7379
|
+
* @deprecated
|
|
7236
7380
|
* @throws {RequiredError}
|
|
7237
7381
|
* @memberof SmartFunctionsApi
|
|
7238
7382
|
*/
|