@gooddata/api-client-tiger 11.36.0-alpha.0 → 11.36.0-alpha.2
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 +1419 -324
- package/esm/endpoints/genAI/index.d.ts +3 -3
- package/esm/endpoints/genAI/index.js +2 -2
- package/esm/generated/afm-rest-api/api.d.ts +107 -200
- package/esm/generated/afm-rest-api/api.js +58 -118
- package/esm/generated/ai-json-api/api.d.ts +384 -18
- package/esm/generated/ai-json-api/api.js +152 -4
- package/esm/generated/metadata-json-api/api.d.ts +1517 -159
- package/esm/generated/metadata-json-api/api.js +1622 -191
- package/esm/index.d.ts +2 -2
- package/package.json +4 -4
|
@@ -352,6 +352,32 @@ export interface AnomalyDetectionResult {
|
|
|
352
352
|
'values': Array<number | null>;
|
|
353
353
|
'anomalyFlag': Array<boolean | null>;
|
|
354
354
|
}
|
|
355
|
+
export interface AnthropicApiKeyAuth {
|
|
356
|
+
/**
|
|
357
|
+
* Anthropic API key.
|
|
358
|
+
*/
|
|
359
|
+
'apiKey'?: string | null;
|
|
360
|
+
/**
|
|
361
|
+
* Authentication type.
|
|
362
|
+
*/
|
|
363
|
+
'type': AnthropicApiKeyAuthTypeEnum;
|
|
364
|
+
}
|
|
365
|
+
export type AnthropicApiKeyAuthTypeEnum = 'API_KEY';
|
|
366
|
+
/**
|
|
367
|
+
* Configuration for Anthropic provider.
|
|
368
|
+
*/
|
|
369
|
+
export interface AnthropicProviderConfig {
|
|
370
|
+
/**
|
|
371
|
+
* Custom base URL for the Anthropic API. Defaults to the official endpoint; override only for enterprise proxies or compatible gateways.
|
|
372
|
+
*/
|
|
373
|
+
'baseUrl'?: string;
|
|
374
|
+
'auth': AnthropicApiKeyAuth;
|
|
375
|
+
/**
|
|
376
|
+
* Provider type.
|
|
377
|
+
*/
|
|
378
|
+
'type': AnthropicProviderConfigTypeEnum;
|
|
379
|
+
}
|
|
380
|
+
export type AnthropicProviderConfigTypeEnum = 'ANTHROPIC';
|
|
355
381
|
/**
|
|
356
382
|
* Metric representing arithmetics between other metrics.
|
|
357
383
|
*/
|
|
@@ -1804,7 +1830,7 @@ export type LlmModelFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | '
|
|
|
1804
1830
|
* @type LlmProviderConfig
|
|
1805
1831
|
* Provider configuration overrides.
|
|
1806
1832
|
*/
|
|
1807
|
-
export type LlmProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
1833
|
+
export type LlmProviderConfig = AnthropicProviderConfig | AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
1808
1834
|
/**
|
|
1809
1835
|
* Filter via label with given match type and literal value.
|
|
1810
1836
|
*/
|
|
@@ -2600,19 +2626,6 @@ export interface ResolvedLlm {
|
|
|
2600
2626
|
'id': string;
|
|
2601
2627
|
'title': string;
|
|
2602
2628
|
}
|
|
2603
|
-
export interface ResolvedLlmEndpoint {
|
|
2604
|
-
/**
|
|
2605
|
-
* Endpoint Id
|
|
2606
|
-
*/
|
|
2607
|
-
'id': string;
|
|
2608
|
-
/**
|
|
2609
|
-
* Endpoint Title
|
|
2610
|
-
*/
|
|
2611
|
-
'title': string;
|
|
2612
|
-
}
|
|
2613
|
-
export interface ResolvedLlmEndpoints {
|
|
2614
|
-
'data': Array<ResolvedLlmEndpoint>;
|
|
2615
|
-
}
|
|
2616
2629
|
export interface ResolvedLlmProvider {
|
|
2617
2630
|
/**
|
|
2618
2631
|
* Provider Id
|
|
@@ -2625,12 +2638,8 @@ export interface ResolvedLlmProvider {
|
|
|
2625
2638
|
'models': Array<LlmModel>;
|
|
2626
2639
|
}
|
|
2627
2640
|
export interface ResolvedLlms {
|
|
2628
|
-
'data'?:
|
|
2641
|
+
'data'?: ResolvedLlmProvider;
|
|
2629
2642
|
}
|
|
2630
|
-
/**
|
|
2631
|
-
* @type ResolvedLlmsData
|
|
2632
|
-
*/
|
|
2633
|
-
export type ResolvedLlmsData = ResolvedLlmEndpoint | ResolvedLlmProvider;
|
|
2634
2643
|
/**
|
|
2635
2644
|
* Object identifier.
|
|
2636
2645
|
*/
|
|
@@ -3001,7 +3010,7 @@ export interface TestLlmProviderByIdRequest {
|
|
|
3001
3010
|
/**
|
|
3002
3011
|
* @type TestLlmProviderByIdRequestProviderConfig
|
|
3003
3012
|
*/
|
|
3004
|
-
export type TestLlmProviderByIdRequestProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
3013
|
+
export type TestLlmProviderByIdRequestProviderConfig = AnthropicProviderConfig | AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
3005
3014
|
export interface TestLlmProviderDefinitionRequest {
|
|
3006
3015
|
'providerConfig': TestLlmProviderByIdRequestProviderConfig;
|
|
3007
3016
|
/**
|
|
@@ -3262,60 +3271,6 @@ export interface ValidateByItem {
|
|
|
3262
3271
|
*/
|
|
3263
3272
|
'type': string;
|
|
3264
3273
|
}
|
|
3265
|
-
export interface ValidateLLMEndpointByIdRequest {
|
|
3266
|
-
/**
|
|
3267
|
-
* Provider for the LLM endpoint validation
|
|
3268
|
-
*/
|
|
3269
|
-
'provider'?: string;
|
|
3270
|
-
/**
|
|
3271
|
-
* Base URL for the LLM endpoint validation
|
|
3272
|
-
*/
|
|
3273
|
-
'baseUrl'?: string;
|
|
3274
|
-
/**
|
|
3275
|
-
* Token for the LLM endpoint validation
|
|
3276
|
-
*/
|
|
3277
|
-
'token'?: string;
|
|
3278
|
-
/**
|
|
3279
|
-
* Organization name for the LLM endpoint validation
|
|
3280
|
-
*/
|
|
3281
|
-
'llmOrganization'?: string;
|
|
3282
|
-
/**
|
|
3283
|
-
* LLM model for the LLM endpoint validation
|
|
3284
|
-
*/
|
|
3285
|
-
'llmModel'?: string;
|
|
3286
|
-
}
|
|
3287
|
-
export interface ValidateLLMEndpointRequest {
|
|
3288
|
-
/**
|
|
3289
|
-
* Provider for the LLM endpoint validation
|
|
3290
|
-
*/
|
|
3291
|
-
'provider': string;
|
|
3292
|
-
/**
|
|
3293
|
-
* Base URL for the LLM endpoint validation
|
|
3294
|
-
*/
|
|
3295
|
-
'baseUrl'?: string;
|
|
3296
|
-
/**
|
|
3297
|
-
* Token for the LLM endpoint validation
|
|
3298
|
-
*/
|
|
3299
|
-
'token': string;
|
|
3300
|
-
/**
|
|
3301
|
-
* Organization name for the LLM endpoint validation
|
|
3302
|
-
*/
|
|
3303
|
-
'llmOrganization'?: string;
|
|
3304
|
-
/**
|
|
3305
|
-
* LLM model for the LLM endpoint validation
|
|
3306
|
-
*/
|
|
3307
|
-
'llmModel'?: string;
|
|
3308
|
-
}
|
|
3309
|
-
export interface ValidateLLMEndpointResponse {
|
|
3310
|
-
/**
|
|
3311
|
-
* Whether the LLM endpoint validation was successful
|
|
3312
|
-
*/
|
|
3313
|
-
'successful': boolean;
|
|
3314
|
-
/**
|
|
3315
|
-
* Additional message about the LLM endpoint validation
|
|
3316
|
-
*/
|
|
3317
|
-
'message': string;
|
|
3318
|
-
}
|
|
3319
3274
|
/**
|
|
3320
3275
|
* Visualization config for smart-function rendering.
|
|
3321
3276
|
*/
|
|
@@ -5930,8 +5885,8 @@ export declare function ActionsApiAxiosParamCreator_OutlierDetection(workspaceId
|
|
|
5930
5885
|
*/
|
|
5931
5886
|
export declare function ActionsApiAxiosParamCreator_OutlierDetectionResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
5932
5887
|
/**
|
|
5933
|
-
*
|
|
5934
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
5888
|
+
* Permanently removed. Use GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmProviders instead. Always returns 410 Gone.
|
|
5889
|
+
* @summary Get Active LLM Endpoints for this workspace (Removed)
|
|
5935
5890
|
* @param {string} workspaceId Workspace identifier
|
|
5936
5891
|
* @param {*} [options] Override http request option.
|
|
5937
5892
|
* @param {Configuration} [configuration] Optional configuration.
|
|
@@ -5939,7 +5894,7 @@ export declare function ActionsApiAxiosParamCreator_OutlierDetectionResult(works
|
|
|
5939
5894
|
*/
|
|
5940
5895
|
export declare function ActionsApiAxiosParamCreator_ResolveLlmEndpoints(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
5941
5896
|
/**
|
|
5942
|
-
* Resolves the active LLM configuration for the given workspace.
|
|
5897
|
+
* Resolves the active LLM provider configuration for the given workspace.
|
|
5943
5898
|
* @summary Get Active LLM configuration for this workspace
|
|
5944
5899
|
* @param {string} workspaceId Workspace identifier
|
|
5945
5900
|
* @param {*} [options] Override http request option.
|
|
@@ -6029,24 +5984,22 @@ export declare function ActionsApiAxiosParamCreator_TrendingObjects(workspaceId:
|
|
|
6029
5984
|
*/
|
|
6030
5985
|
export declare function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6031
5986
|
/**
|
|
6032
|
-
*
|
|
6033
|
-
* @summary Validate LLM Endpoint
|
|
6034
|
-
* @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
|
|
5987
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
5988
|
+
* @summary Validate LLM Endpoint (Removed)
|
|
6035
5989
|
* @param {*} [options] Override http request option.
|
|
6036
5990
|
* @param {Configuration} [configuration] Optional configuration.
|
|
6037
5991
|
* @throws {RequiredError}
|
|
6038
5992
|
*/
|
|
6039
|
-
export declare function ActionsApiAxiosParamCreator_ValidateLLMEndpoint(
|
|
5993
|
+
export declare function ActionsApiAxiosParamCreator_ValidateLLMEndpoint(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6040
5994
|
/**
|
|
6041
|
-
*
|
|
6042
|
-
* @summary Validate LLM Endpoint By Id
|
|
5995
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test instead. Always returns 410 Gone.
|
|
5996
|
+
* @summary Validate LLM Endpoint By Id (Removed)
|
|
6043
5997
|
* @param {string} llmEndpointId
|
|
6044
|
-
* @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
|
|
6045
5998
|
* @param {*} [options] Override http request option.
|
|
6046
5999
|
* @param {Configuration} [configuration] Optional configuration.
|
|
6047
6000
|
* @throws {RequiredError}
|
|
6048
6001
|
*/
|
|
6049
|
-
export declare function ActionsApiAxiosParamCreator_ValidateLLMEndpointById(llmEndpointId: string,
|
|
6002
|
+
export declare function ActionsApiAxiosParamCreator_ValidateLLMEndpointById(llmEndpointId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6050
6003
|
/**
|
|
6051
6004
|
* (BETA) Combines multiple use cases such as search, create visualizations, ...
|
|
6052
6005
|
* @summary (BETA) Chat with AI
|
|
@@ -6432,8 +6385,8 @@ export declare function ActionsApi_OutlierDetection(axios: AxiosInstance, basePa
|
|
|
6432
6385
|
*/
|
|
6433
6386
|
export declare function ActionsApi_OutlierDetectionResult(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<OutlierDetectionResult>;
|
|
6434
6387
|
/**
|
|
6435
|
-
*
|
|
6436
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
6388
|
+
* Permanently removed. Use GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmProviders instead. Always returns 410 Gone.
|
|
6389
|
+
* @summary Get Active LLM Endpoints for this workspace (Removed)
|
|
6437
6390
|
* @param {AxiosInstance} axios Axios instance.
|
|
6438
6391
|
* @param {string} basePath Base path.
|
|
6439
6392
|
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
@@ -6441,9 +6394,9 @@ export declare function ActionsApi_OutlierDetectionResult(axios: AxiosInstance,
|
|
|
6441
6394
|
* @param {Configuration} [configuration] Optional configuration.
|
|
6442
6395
|
* @throws {RequiredError}
|
|
6443
6396
|
*/
|
|
6444
|
-
export declare function ActionsApi_ResolveLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
6397
|
+
export declare function ActionsApi_ResolveLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
6445
6398
|
/**
|
|
6446
|
-
* Resolves the active LLM configuration for the given workspace.
|
|
6399
|
+
* Resolves the active LLM provider configuration for the given workspace.
|
|
6447
6400
|
* @summary Get Active LLM configuration for this workspace
|
|
6448
6401
|
* @param {AxiosInstance} axios Axios instance.
|
|
6449
6402
|
* @param {string} basePath Base path.
|
|
@@ -6542,19 +6495,18 @@ export declare function ActionsApi_TrendingObjects(axios: AxiosInstance, basePat
|
|
|
6542
6495
|
*/
|
|
6543
6496
|
export declare function ActionsApi_TriggerQualityIssuesCalculation(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
6544
6497
|
/**
|
|
6545
|
-
*
|
|
6546
|
-
* @summary Validate LLM Endpoint
|
|
6498
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
6499
|
+
* @summary Validate LLM Endpoint (Removed)
|
|
6547
6500
|
* @param {AxiosInstance} axios Axios instance.
|
|
6548
6501
|
* @param {string} basePath Base path.
|
|
6549
|
-
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
6550
6502
|
* @param {*} [options] Override http request option.
|
|
6551
6503
|
* @param {Configuration} [configuration] Optional configuration.
|
|
6552
6504
|
* @throws {RequiredError}
|
|
6553
6505
|
*/
|
|
6554
|
-
export declare function ActionsApi_ValidateLLMEndpoint(axios: AxiosInstance, basePath: string,
|
|
6506
|
+
export declare function ActionsApi_ValidateLLMEndpoint(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
6555
6507
|
/**
|
|
6556
|
-
*
|
|
6557
|
-
* @summary Validate LLM Endpoint By Id
|
|
6508
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test instead. Always returns 410 Gone.
|
|
6509
|
+
* @summary Validate LLM Endpoint By Id (Removed)
|
|
6558
6510
|
* @param {AxiosInstance} axios Axios instance.
|
|
6559
6511
|
* @param {string} basePath Base path.
|
|
6560
6512
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
@@ -6562,7 +6514,7 @@ export declare function ActionsApi_ValidateLLMEndpoint(axios: AxiosInstance, bas
|
|
|
6562
6514
|
* @param {Configuration} [configuration] Optional configuration.
|
|
6563
6515
|
* @throws {RequiredError}
|
|
6564
6516
|
*/
|
|
6565
|
-
export declare function ActionsApi_ValidateLLMEndpointById(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
6517
|
+
export declare function ActionsApi_ValidateLLMEndpointById(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
6566
6518
|
/**
|
|
6567
6519
|
* ActionsApi - interface
|
|
6568
6520
|
* @export
|
|
@@ -6886,17 +6838,17 @@ export interface ActionsApiInterface {
|
|
|
6886
6838
|
*/
|
|
6887
6839
|
outlierDetectionResult(requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
|
|
6888
6840
|
/**
|
|
6889
|
-
*
|
|
6890
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
6841
|
+
* Permanently removed. Use GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmProviders instead. Always returns 410 Gone.
|
|
6842
|
+
* @summary Get Active LLM Endpoints for this workspace (Removed)
|
|
6891
6843
|
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
6892
6844
|
* @param {*} [options] Override http request option.
|
|
6893
6845
|
* @deprecated
|
|
6894
6846
|
* @throws {RequiredError}
|
|
6895
6847
|
* @memberof ActionsApiInterface
|
|
6896
6848
|
*/
|
|
6897
|
-
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
6849
|
+
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
6898
6850
|
/**
|
|
6899
|
-
* Resolves the active LLM configuration for the given workspace.
|
|
6851
|
+
* Resolves the active LLM provider configuration for the given workspace.
|
|
6900
6852
|
* @summary Get Active LLM configuration for this workspace
|
|
6901
6853
|
* @param {ActionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
6902
6854
|
* @param {*} [options] Override http request option.
|
|
@@ -6977,25 +6929,24 @@ export interface ActionsApiInterface {
|
|
|
6977
6929
|
*/
|
|
6978
6930
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
6979
6931
|
/**
|
|
6980
|
-
*
|
|
6981
|
-
* @summary Validate LLM Endpoint
|
|
6982
|
-
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
6932
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
6933
|
+
* @summary Validate LLM Endpoint (Removed)
|
|
6983
6934
|
* @param {*} [options] Override http request option.
|
|
6984
6935
|
* @deprecated
|
|
6985
6936
|
* @throws {RequiredError}
|
|
6986
6937
|
* @memberof ActionsApiInterface
|
|
6987
6938
|
*/
|
|
6988
|
-
validateLLMEndpoint(
|
|
6939
|
+
validateLLMEndpoint(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
6989
6940
|
/**
|
|
6990
|
-
*
|
|
6991
|
-
* @summary Validate LLM Endpoint By Id
|
|
6941
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test instead. Always returns 410 Gone.
|
|
6942
|
+
* @summary Validate LLM Endpoint By Id (Removed)
|
|
6992
6943
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
6993
6944
|
* @param {*} [options] Override http request option.
|
|
6994
6945
|
* @deprecated
|
|
6995
6946
|
* @throws {RequiredError}
|
|
6996
6947
|
* @memberof ActionsApiInterface
|
|
6997
6948
|
*/
|
|
6998
|
-
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
6949
|
+
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
6999
6950
|
}
|
|
7000
6951
|
/**
|
|
7001
6952
|
* Request parameters for aiChat operation in ActionsApi.
|
|
@@ -7966,19 +7917,6 @@ export interface ActionsApiTriggerQualityIssuesCalculationRequest {
|
|
|
7966
7917
|
*/
|
|
7967
7918
|
readonly workspaceId: string;
|
|
7968
7919
|
}
|
|
7969
|
-
/**
|
|
7970
|
-
* Request parameters for validateLLMEndpoint operation in ActionsApi.
|
|
7971
|
-
* @export
|
|
7972
|
-
* @interface ActionsApiValidateLLMEndpointRequest
|
|
7973
|
-
*/
|
|
7974
|
-
export interface ActionsApiValidateLLMEndpointRequest {
|
|
7975
|
-
/**
|
|
7976
|
-
*
|
|
7977
|
-
* @type {ValidateLLMEndpointRequest}
|
|
7978
|
-
* @memberof ActionsApiValidateLLMEndpoint
|
|
7979
|
-
*/
|
|
7980
|
-
readonly validateLLMEndpointRequest: ValidateLLMEndpointRequest;
|
|
7981
|
-
}
|
|
7982
7920
|
/**
|
|
7983
7921
|
* Request parameters for validateLLMEndpointById operation in ActionsApi.
|
|
7984
7922
|
* @export
|
|
@@ -7991,12 +7929,6 @@ export interface ActionsApiValidateLLMEndpointByIdRequest {
|
|
|
7991
7929
|
* @memberof ActionsApiValidateLLMEndpointById
|
|
7992
7930
|
*/
|
|
7993
7931
|
readonly llmEndpointId: string;
|
|
7994
|
-
/**
|
|
7995
|
-
*
|
|
7996
|
-
* @type {ValidateLLMEndpointByIdRequest}
|
|
7997
|
-
* @memberof ActionsApiValidateLLMEndpointById
|
|
7998
|
-
*/
|
|
7999
|
-
readonly validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest;
|
|
8000
7932
|
}
|
|
8001
7933
|
/**
|
|
8002
7934
|
* ActionsApi - object-oriented interface
|
|
@@ -8322,17 +8254,17 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
8322
8254
|
*/
|
|
8323
8255
|
outlierDetectionResult(requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
|
|
8324
8256
|
/**
|
|
8325
|
-
*
|
|
8326
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
8257
|
+
* Permanently removed. Use GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmProviders instead. Always returns 410 Gone.
|
|
8258
|
+
* @summary Get Active LLM Endpoints for this workspace (Removed)
|
|
8327
8259
|
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
8328
8260
|
* @param {*} [options] Override http request option.
|
|
8329
8261
|
* @deprecated
|
|
8330
8262
|
* @throws {RequiredError}
|
|
8331
8263
|
* @memberof ActionsApi
|
|
8332
8264
|
*/
|
|
8333
|
-
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
8265
|
+
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
8334
8266
|
/**
|
|
8335
|
-
* Resolves the active LLM configuration for the given workspace.
|
|
8267
|
+
* Resolves the active LLM provider configuration for the given workspace.
|
|
8336
8268
|
* @summary Get Active LLM configuration for this workspace
|
|
8337
8269
|
* @param {ActionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
8338
8270
|
* @param {*} [options] Override http request option.
|
|
@@ -8413,25 +8345,24 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
8413
8345
|
*/
|
|
8414
8346
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
8415
8347
|
/**
|
|
8416
|
-
*
|
|
8417
|
-
* @summary Validate LLM Endpoint
|
|
8418
|
-
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
8348
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
8349
|
+
* @summary Validate LLM Endpoint (Removed)
|
|
8419
8350
|
* @param {*} [options] Override http request option.
|
|
8420
8351
|
* @deprecated
|
|
8421
8352
|
* @throws {RequiredError}
|
|
8422
8353
|
* @memberof ActionsApi
|
|
8423
8354
|
*/
|
|
8424
|
-
validateLLMEndpoint(
|
|
8355
|
+
validateLLMEndpoint(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
8425
8356
|
/**
|
|
8426
|
-
*
|
|
8427
|
-
* @summary Validate LLM Endpoint By Id
|
|
8357
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test instead. Always returns 410 Gone.
|
|
8358
|
+
* @summary Validate LLM Endpoint By Id (Removed)
|
|
8428
8359
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
8429
8360
|
* @param {*} [options] Override http request option.
|
|
8430
8361
|
* @deprecated
|
|
8431
8362
|
* @throws {RequiredError}
|
|
8432
8363
|
* @memberof ActionsApi
|
|
8433
8364
|
*/
|
|
8434
|
-
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
8365
|
+
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
8435
8366
|
}
|
|
8436
8367
|
/**
|
|
8437
8368
|
* 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.
|
|
@@ -9706,8 +9637,8 @@ export declare function SmartFunctionsApiAxiosParamCreator_ListLlmProviderModels
|
|
|
9706
9637
|
*/
|
|
9707
9638
|
export declare function SmartFunctionsApiAxiosParamCreator_MemoryCreatedByUsers(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
9708
9639
|
/**
|
|
9709
|
-
*
|
|
9710
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
9640
|
+
* Permanently removed. Use GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmProviders instead. Always returns 410 Gone.
|
|
9641
|
+
* @summary Get Active LLM Endpoints for this workspace (Removed)
|
|
9711
9642
|
* @param {string} workspaceId Workspace identifier
|
|
9712
9643
|
* @param {*} [options] Override http request option.
|
|
9713
9644
|
* @param {Configuration} [configuration] Optional configuration.
|
|
@@ -9715,7 +9646,7 @@ export declare function SmartFunctionsApiAxiosParamCreator_MemoryCreatedByUsers(
|
|
|
9715
9646
|
*/
|
|
9716
9647
|
export declare function SmartFunctionsApiAxiosParamCreator_ResolveLlmEndpoints(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
9717
9648
|
/**
|
|
9718
|
-
* Resolves the active LLM configuration for the given workspace.
|
|
9649
|
+
* Resolves the active LLM provider configuration for the given workspace.
|
|
9719
9650
|
* @summary Get Active LLM configuration for this workspace
|
|
9720
9651
|
* @param {string} workspaceId Workspace identifier
|
|
9721
9652
|
* @param {*} [options] Override http request option.
|
|
@@ -9770,24 +9701,22 @@ export declare function SmartFunctionsApiAxiosParamCreator_TrendingObjects(works
|
|
|
9770
9701
|
*/
|
|
9771
9702
|
export declare function SmartFunctionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
9772
9703
|
/**
|
|
9773
|
-
*
|
|
9774
|
-
* @summary Validate LLM Endpoint
|
|
9775
|
-
* @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
|
|
9704
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
9705
|
+
* @summary Validate LLM Endpoint (Removed)
|
|
9776
9706
|
* @param {*} [options] Override http request option.
|
|
9777
9707
|
* @param {Configuration} [configuration] Optional configuration.
|
|
9778
9708
|
* @throws {RequiredError}
|
|
9779
9709
|
*/
|
|
9780
|
-
export declare function SmartFunctionsApiAxiosParamCreator_ValidateLLMEndpoint(
|
|
9710
|
+
export declare function SmartFunctionsApiAxiosParamCreator_ValidateLLMEndpoint(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
9781
9711
|
/**
|
|
9782
|
-
*
|
|
9783
|
-
* @summary Validate LLM Endpoint By Id
|
|
9712
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test instead. Always returns 410 Gone.
|
|
9713
|
+
* @summary Validate LLM Endpoint By Id (Removed)
|
|
9784
9714
|
* @param {string} llmEndpointId
|
|
9785
|
-
* @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
|
|
9786
9715
|
* @param {*} [options] Override http request option.
|
|
9787
9716
|
* @param {Configuration} [configuration] Optional configuration.
|
|
9788
9717
|
* @throws {RequiredError}
|
|
9789
9718
|
*/
|
|
9790
|
-
export declare function SmartFunctionsApiAxiosParamCreator_ValidateLLMEndpointById(llmEndpointId: string,
|
|
9719
|
+
export declare function SmartFunctionsApiAxiosParamCreator_ValidateLLMEndpointById(llmEndpointId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
9791
9720
|
/**
|
|
9792
9721
|
* (BETA) Combines multiple use cases such as search, create visualizations, ...
|
|
9793
9722
|
* @summary (BETA) Chat with AI
|
|
@@ -9998,8 +9927,8 @@ export declare function SmartFunctionsApi_ListLlmProviderModelsById(axios: Axios
|
|
|
9998
9927
|
*/
|
|
9999
9928
|
export declare function SmartFunctionsApi_MemoryCreatedByUsers(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<MemoryItemCreatedByUsers>;
|
|
10000
9929
|
/**
|
|
10001
|
-
*
|
|
10002
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
9930
|
+
* Permanently removed. Use GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmProviders instead. Always returns 410 Gone.
|
|
9931
|
+
* @summary Get Active LLM Endpoints for this workspace (Removed)
|
|
10003
9932
|
* @param {AxiosInstance} axios Axios instance.
|
|
10004
9933
|
* @param {string} basePath Base path.
|
|
10005
9934
|
* @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
@@ -10007,9 +9936,9 @@ export declare function SmartFunctionsApi_MemoryCreatedByUsers(axios: AxiosInsta
|
|
|
10007
9936
|
* @param {Configuration} [configuration] Optional configuration.
|
|
10008
9937
|
* @throws {RequiredError}
|
|
10009
9938
|
*/
|
|
10010
|
-
export declare function SmartFunctionsApi_ResolveLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
9939
|
+
export declare function SmartFunctionsApi_ResolveLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
10011
9940
|
/**
|
|
10012
|
-
* Resolves the active LLM configuration for the given workspace.
|
|
9941
|
+
* Resolves the active LLM provider configuration for the given workspace.
|
|
10013
9942
|
* @summary Get Active LLM configuration for this workspace
|
|
10014
9943
|
* @param {AxiosInstance} axios Axios instance.
|
|
10015
9944
|
* @param {string} basePath Base path.
|
|
@@ -10075,19 +10004,18 @@ export declare function SmartFunctionsApi_TrendingObjects(axios: AxiosInstance,
|
|
|
10075
10004
|
*/
|
|
10076
10005
|
export declare function SmartFunctionsApi_TriggerQualityIssuesCalculation(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
10077
10006
|
/**
|
|
10078
|
-
*
|
|
10079
|
-
* @summary Validate LLM Endpoint
|
|
10007
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
10008
|
+
* @summary Validate LLM Endpoint (Removed)
|
|
10080
10009
|
* @param {AxiosInstance} axios Axios instance.
|
|
10081
10010
|
* @param {string} basePath Base path.
|
|
10082
|
-
* @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
10083
10011
|
* @param {*} [options] Override http request option.
|
|
10084
10012
|
* @param {Configuration} [configuration] Optional configuration.
|
|
10085
10013
|
* @throws {RequiredError}
|
|
10086
10014
|
*/
|
|
10087
|
-
export declare function SmartFunctionsApi_ValidateLLMEndpoint(axios: AxiosInstance, basePath: string,
|
|
10015
|
+
export declare function SmartFunctionsApi_ValidateLLMEndpoint(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
10088
10016
|
/**
|
|
10089
|
-
*
|
|
10090
|
-
* @summary Validate LLM Endpoint By Id
|
|
10017
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test instead. Always returns 410 Gone.
|
|
10018
|
+
* @summary Validate LLM Endpoint By Id (Removed)
|
|
10091
10019
|
* @param {AxiosInstance} axios Axios instance.
|
|
10092
10020
|
* @param {string} basePath Base path.
|
|
10093
10021
|
* @param {SmartFunctionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
@@ -10095,7 +10023,7 @@ export declare function SmartFunctionsApi_ValidateLLMEndpoint(axios: AxiosInstan
|
|
|
10095
10023
|
* @param {Configuration} [configuration] Optional configuration.
|
|
10096
10024
|
* @throws {RequiredError}
|
|
10097
10025
|
*/
|
|
10098
|
-
export declare function SmartFunctionsApi_ValidateLLMEndpointById(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
10026
|
+
export declare function SmartFunctionsApi_ValidateLLMEndpointById(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
10099
10027
|
/**
|
|
10100
10028
|
* SmartFunctionsApi - interface
|
|
10101
10029
|
* @export
|
|
@@ -10276,17 +10204,17 @@ export interface SmartFunctionsApiInterface {
|
|
|
10276
10204
|
*/
|
|
10277
10205
|
memoryCreatedByUsers(requestParameters: SmartFunctionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItemCreatedByUsers>;
|
|
10278
10206
|
/**
|
|
10279
|
-
*
|
|
10280
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
10207
|
+
* Permanently removed. Use GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmProviders instead. Always returns 410 Gone.
|
|
10208
|
+
* @summary Get Active LLM Endpoints for this workspace (Removed)
|
|
10281
10209
|
* @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
10282
10210
|
* @param {*} [options] Override http request option.
|
|
10283
10211
|
* @deprecated
|
|
10284
10212
|
* @throws {RequiredError}
|
|
10285
10213
|
* @memberof SmartFunctionsApiInterface
|
|
10286
10214
|
*/
|
|
10287
|
-
resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
10215
|
+
resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
10288
10216
|
/**
|
|
10289
|
-
* Resolves the active LLM configuration for the given workspace.
|
|
10217
|
+
* Resolves the active LLM provider configuration for the given workspace.
|
|
10290
10218
|
* @summary Get Active LLM configuration for this workspace
|
|
10291
10219
|
* @param {SmartFunctionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
10292
10220
|
* @param {*} [options] Override http request option.
|
|
@@ -10340,25 +10268,24 @@ export interface SmartFunctionsApiInterface {
|
|
|
10340
10268
|
*/
|
|
10341
10269
|
triggerQualityIssuesCalculation(requestParameters: SmartFunctionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
10342
10270
|
/**
|
|
10343
|
-
*
|
|
10344
|
-
* @summary Validate LLM Endpoint
|
|
10345
|
-
* @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
10271
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
10272
|
+
* @summary Validate LLM Endpoint (Removed)
|
|
10346
10273
|
* @param {*} [options] Override http request option.
|
|
10347
10274
|
* @deprecated
|
|
10348
10275
|
* @throws {RequiredError}
|
|
10349
10276
|
* @memberof SmartFunctionsApiInterface
|
|
10350
10277
|
*/
|
|
10351
|
-
validateLLMEndpoint(
|
|
10278
|
+
validateLLMEndpoint(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
10352
10279
|
/**
|
|
10353
|
-
*
|
|
10354
|
-
* @summary Validate LLM Endpoint By Id
|
|
10280
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test instead. Always returns 410 Gone.
|
|
10281
|
+
* @summary Validate LLM Endpoint By Id (Removed)
|
|
10355
10282
|
* @param {SmartFunctionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
10356
10283
|
* @param {*} [options] Override http request option.
|
|
10357
10284
|
* @deprecated
|
|
10358
10285
|
* @throws {RequiredError}
|
|
10359
10286
|
* @memberof SmartFunctionsApiInterface
|
|
10360
10287
|
*/
|
|
10361
|
-
validateLLMEndpointById(requestParameters: SmartFunctionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
10288
|
+
validateLLMEndpointById(requestParameters: SmartFunctionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
10362
10289
|
}
|
|
10363
10290
|
/**
|
|
10364
10291
|
* Request parameters for aiChat operation in SmartFunctionsApi.
|
|
@@ -10854,19 +10781,6 @@ export interface SmartFunctionsApiTriggerQualityIssuesCalculationRequest {
|
|
|
10854
10781
|
*/
|
|
10855
10782
|
readonly workspaceId: string;
|
|
10856
10783
|
}
|
|
10857
|
-
/**
|
|
10858
|
-
* Request parameters for validateLLMEndpoint operation in SmartFunctionsApi.
|
|
10859
|
-
* @export
|
|
10860
|
-
* @interface SmartFunctionsApiValidateLLMEndpointRequest
|
|
10861
|
-
*/
|
|
10862
|
-
export interface SmartFunctionsApiValidateLLMEndpointRequest {
|
|
10863
|
-
/**
|
|
10864
|
-
*
|
|
10865
|
-
* @type {ValidateLLMEndpointRequest}
|
|
10866
|
-
* @memberof SmartFunctionsApiValidateLLMEndpoint
|
|
10867
|
-
*/
|
|
10868
|
-
readonly validateLLMEndpointRequest: ValidateLLMEndpointRequest;
|
|
10869
|
-
}
|
|
10870
10784
|
/**
|
|
10871
10785
|
* Request parameters for validateLLMEndpointById operation in SmartFunctionsApi.
|
|
10872
10786
|
* @export
|
|
@@ -10879,12 +10793,6 @@ export interface SmartFunctionsApiValidateLLMEndpointByIdRequest {
|
|
|
10879
10793
|
* @memberof SmartFunctionsApiValidateLLMEndpointById
|
|
10880
10794
|
*/
|
|
10881
10795
|
readonly llmEndpointId: string;
|
|
10882
|
-
/**
|
|
10883
|
-
*
|
|
10884
|
-
* @type {ValidateLLMEndpointByIdRequest}
|
|
10885
|
-
* @memberof SmartFunctionsApiValidateLLMEndpointById
|
|
10886
|
-
*/
|
|
10887
|
-
readonly validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest;
|
|
10888
10796
|
}
|
|
10889
10797
|
/**
|
|
10890
10798
|
* SmartFunctionsApi - object-oriented interface
|
|
@@ -11067,17 +10975,17 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
11067
10975
|
*/
|
|
11068
10976
|
memoryCreatedByUsers(requestParameters: SmartFunctionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItemCreatedByUsers>;
|
|
11069
10977
|
/**
|
|
11070
|
-
*
|
|
11071
|
-
* @summary Get Active LLM Endpoints for this workspace
|
|
10978
|
+
* Permanently removed. Use GET /api/v1/actions/workspaces/{workspaceId}/ai/resolveLlmProviders instead. Always returns 410 Gone.
|
|
10979
|
+
* @summary Get Active LLM Endpoints for this workspace (Removed)
|
|
11072
10980
|
* @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
11073
10981
|
* @param {*} [options] Override http request option.
|
|
11074
10982
|
* @deprecated
|
|
11075
10983
|
* @throws {RequiredError}
|
|
11076
10984
|
* @memberof SmartFunctionsApi
|
|
11077
10985
|
*/
|
|
11078
|
-
resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
10986
|
+
resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11079
10987
|
/**
|
|
11080
|
-
* Resolves the active LLM configuration for the given workspace.
|
|
10988
|
+
* Resolves the active LLM provider configuration for the given workspace.
|
|
11081
10989
|
* @summary Get Active LLM configuration for this workspace
|
|
11082
10990
|
* @param {SmartFunctionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
11083
10991
|
* @param {*} [options] Override http request option.
|
|
@@ -11131,23 +11039,22 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
11131
11039
|
*/
|
|
11132
11040
|
triggerQualityIssuesCalculation(requestParameters: SmartFunctionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
11133
11041
|
/**
|
|
11134
|
-
*
|
|
11135
|
-
* @summary Validate LLM Endpoint
|
|
11136
|
-
* @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
11042
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
11043
|
+
* @summary Validate LLM Endpoint (Removed)
|
|
11137
11044
|
* @param {*} [options] Override http request option.
|
|
11138
11045
|
* @deprecated
|
|
11139
11046
|
* @throws {RequiredError}
|
|
11140
11047
|
* @memberof SmartFunctionsApi
|
|
11141
11048
|
*/
|
|
11142
|
-
validateLLMEndpoint(
|
|
11049
|
+
validateLLMEndpoint(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11143
11050
|
/**
|
|
11144
|
-
*
|
|
11145
|
-
* @summary Validate LLM Endpoint By Id
|
|
11051
|
+
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/{llmProviderId}/test instead. Always returns 410 Gone.
|
|
11052
|
+
* @summary Validate LLM Endpoint By Id (Removed)
|
|
11146
11053
|
* @param {SmartFunctionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
11147
11054
|
* @param {*} [options] Override http request option.
|
|
11148
11055
|
* @deprecated
|
|
11149
11056
|
* @throws {RequiredError}
|
|
11150
11057
|
* @memberof SmartFunctionsApi
|
|
11151
11058
|
*/
|
|
11152
|
-
validateLLMEndpointById(requestParameters: SmartFunctionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
11059
|
+
validateLLMEndpointById(requestParameters: SmartFunctionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
11153
11060
|
}
|