@gooddata/api-client-tiger 11.26.0-alpha.2 → 11.26.0-alpha.4
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 +1233 -925
- package/esm/endpoints/actions/index.d.ts +1 -1
- package/esm/endpoints/actions/index.d.ts.map +1 -1
- package/esm/endpoints/actions/index.js +1 -1
- package/esm/endpoints/actions/index.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +453 -50
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +296 -30
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +970 -910
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +81 -54
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/package.json +5 -5
|
@@ -711,6 +711,10 @@ export interface ChatResult {
|
|
|
711
711
|
*/
|
|
712
712
|
'chatHistoryInteractionId'?: string;
|
|
713
713
|
'reasoning'?: Reasoning;
|
|
714
|
+
/**
|
|
715
|
+
* Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
|
|
716
|
+
*/
|
|
717
|
+
'toolCallEvents'?: Array<ToolCallEventResult>;
|
|
714
718
|
}
|
|
715
719
|
export interface ChatUsageResponse {
|
|
716
720
|
/**
|
|
@@ -886,6 +890,23 @@ export interface CreatedVisualizations {
|
|
|
886
890
|
*/
|
|
887
891
|
'suggestions': Array<Suggestion>;
|
|
888
892
|
}
|
|
893
|
+
/**
|
|
894
|
+
* Dashboard the user is currently viewing.
|
|
895
|
+
*/
|
|
896
|
+
export interface DashboardContext {
|
|
897
|
+
/**
|
|
898
|
+
* Dashboard object ID.
|
|
899
|
+
*/
|
|
900
|
+
'id': string;
|
|
901
|
+
/**
|
|
902
|
+
* Widgets currently visible on the dashboard.
|
|
903
|
+
*/
|
|
904
|
+
'widgets': Array<DashboardContextWidgetsInner>;
|
|
905
|
+
}
|
|
906
|
+
/**
|
|
907
|
+
* @type DashboardContextWidgetsInner
|
|
908
|
+
*/
|
|
909
|
+
export type DashboardContextWidgetsInner = InsightWidgetDescriptor | RichTextWidgetDescriptor | VisualizationSwitcherWidgetDescriptor;
|
|
889
910
|
/**
|
|
890
911
|
* Mapping from dimension items (either \'localIdentifier\' from \'AttributeItem\', or \"measureGroup\") to their respective values. This effectively specifies the path (location) of the data column used for sorting. Therefore values for all dimension items must be specified.
|
|
891
912
|
*/
|
|
@@ -1412,6 +1433,27 @@ export interface InlineMeasureDefinitionInline {
|
|
|
1412
1433
|
*/
|
|
1413
1434
|
'maql': string;
|
|
1414
1435
|
}
|
|
1436
|
+
/**
|
|
1437
|
+
* Insight widget displaying a visualization.
|
|
1438
|
+
*/
|
|
1439
|
+
export interface InsightWidgetDescriptor extends WidgetDescriptor {
|
|
1440
|
+
/**
|
|
1441
|
+
* Widget object ID.
|
|
1442
|
+
*/
|
|
1443
|
+
'widgetId': string;
|
|
1444
|
+
/**
|
|
1445
|
+
* Widget title as displayed on the dashboard.
|
|
1446
|
+
*/
|
|
1447
|
+
'title': string;
|
|
1448
|
+
/**
|
|
1449
|
+
* Signed result ID for this widget\'s cached execution result.
|
|
1450
|
+
*/
|
|
1451
|
+
'resultId'?: string;
|
|
1452
|
+
/**
|
|
1453
|
+
* Visualization object ID referenced by this insight widget.
|
|
1454
|
+
*/
|
|
1455
|
+
'visualizationId': string;
|
|
1456
|
+
}
|
|
1415
1457
|
export interface KeyDriversDimension {
|
|
1416
1458
|
'label': RestApiIdentifier;
|
|
1417
1459
|
'labelName': string;
|
|
@@ -1752,6 +1794,24 @@ export interface NegativeAttributeFilterNegativeAttributeFilter {
|
|
|
1752
1794
|
'applyOnResult'?: boolean;
|
|
1753
1795
|
'label': AfmIdentifier;
|
|
1754
1796
|
}
|
|
1797
|
+
export interface ObjectReference {
|
|
1798
|
+
/**
|
|
1799
|
+
* Type of the referenced object.
|
|
1800
|
+
*/
|
|
1801
|
+
'type': ObjectReferenceTypeEnum;
|
|
1802
|
+
/**
|
|
1803
|
+
* Object identifier (e.g. widget ID, metric ID).
|
|
1804
|
+
*/
|
|
1805
|
+
'id': string;
|
|
1806
|
+
}
|
|
1807
|
+
export type ObjectReferenceTypeEnum = 'WIDGET' | 'METRIC' | 'ATTRIBUTE' | 'DASHBOARD';
|
|
1808
|
+
export interface ObjectReferenceGroup {
|
|
1809
|
+
'context'?: ObjectReference;
|
|
1810
|
+
/**
|
|
1811
|
+
* Objects the user explicitly referenced within this context.
|
|
1812
|
+
*/
|
|
1813
|
+
'objects': Array<ObjectReference>;
|
|
1814
|
+
}
|
|
1755
1815
|
/**
|
|
1756
1816
|
* Configuration for OpenAI provider.
|
|
1757
1817
|
*/
|
|
@@ -2146,6 +2206,13 @@ export interface RelativeDateFilterRelativeDateFilter {
|
|
|
2146
2206
|
}
|
|
2147
2207
|
export type RelativeDateFilterRelativeDateFilterGranularityEnum = 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR' | 'MINUTE_OF_HOUR' | 'HOUR_OF_DAY' | 'DAY_OF_WEEK' | 'DAY_OF_MONTH' | 'DAY_OF_QUARTER' | 'DAY_OF_YEAR' | 'WEEK_OF_YEAR' | 'MONTH_OF_YEAR' | 'QUARTER_OF_YEAR' | 'FISCAL_MONTH' | 'FISCAL_QUARTER' | 'FISCAL_YEAR';
|
|
2148
2208
|
export type RelativeDateFilterRelativeDateFilterEmptyValueHandlingEnum = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
|
|
2209
|
+
/**
|
|
2210
|
+
* The resolved LLM configuration, or null if none is configured.
|
|
2211
|
+
*/
|
|
2212
|
+
export interface ResolvedLlm {
|
|
2213
|
+
'id': string;
|
|
2214
|
+
'title': string;
|
|
2215
|
+
}
|
|
2149
2216
|
export interface ResolvedLlmEndpoint {
|
|
2150
2217
|
/**
|
|
2151
2218
|
* Endpoint Id
|
|
@@ -2159,6 +2226,24 @@ export interface ResolvedLlmEndpoint {
|
|
|
2159
2226
|
export interface ResolvedLlmEndpoints {
|
|
2160
2227
|
'data': Array<ResolvedLlmEndpoint>;
|
|
2161
2228
|
}
|
|
2229
|
+
export interface ResolvedLlmProvider {
|
|
2230
|
+
/**
|
|
2231
|
+
* Provider Id
|
|
2232
|
+
*/
|
|
2233
|
+
'id': string;
|
|
2234
|
+
/**
|
|
2235
|
+
* Provider Title
|
|
2236
|
+
*/
|
|
2237
|
+
'title': string;
|
|
2238
|
+
'models': Array<LlmModel>;
|
|
2239
|
+
}
|
|
2240
|
+
export interface ResolvedLlms {
|
|
2241
|
+
'data'?: ResolvedLlmsData;
|
|
2242
|
+
}
|
|
2243
|
+
/**
|
|
2244
|
+
* @type ResolvedLlmsData
|
|
2245
|
+
*/
|
|
2246
|
+
export type ResolvedLlmsData = ResolvedLlmEndpoint | ResolvedLlmProvider;
|
|
2162
2247
|
/**
|
|
2163
2248
|
* Object identifier.
|
|
2164
2249
|
*/
|
|
@@ -2197,6 +2282,19 @@ export interface ResultSpec {
|
|
|
2197
2282
|
'dimensions': Array<Dimension>;
|
|
2198
2283
|
'totals'?: Array<Total>;
|
|
2199
2284
|
}
|
|
2285
|
+
/**
|
|
2286
|
+
* Rich text widget displaying static content. Has no execution result.
|
|
2287
|
+
*/
|
|
2288
|
+
export interface RichTextWidgetDescriptor extends WidgetDescriptor {
|
|
2289
|
+
/**
|
|
2290
|
+
* Widget object ID.
|
|
2291
|
+
*/
|
|
2292
|
+
'widgetId': string;
|
|
2293
|
+
/**
|
|
2294
|
+
* Widget title as displayed on the dashboard.
|
|
2295
|
+
*/
|
|
2296
|
+
'title': string;
|
|
2297
|
+
}
|
|
2200
2298
|
/**
|
|
2201
2299
|
* Question -> Use Case routing. May contain final answer is a special use case is not required.
|
|
2202
2300
|
*/
|
|
@@ -2550,6 +2648,23 @@ export interface Thought {
|
|
|
2550
2648
|
*/
|
|
2551
2649
|
'text': string;
|
|
2552
2650
|
}
|
|
2651
|
+
/**
|
|
2652
|
+
* Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
|
|
2653
|
+
*/
|
|
2654
|
+
export interface ToolCallEventResult {
|
|
2655
|
+
/**
|
|
2656
|
+
* Name of the tool function that was called.
|
|
2657
|
+
*/
|
|
2658
|
+
'functionName': string;
|
|
2659
|
+
/**
|
|
2660
|
+
* JSON-encoded arguments passed to the tool function.
|
|
2661
|
+
*/
|
|
2662
|
+
'functionArguments': string;
|
|
2663
|
+
/**
|
|
2664
|
+
* Result returned by the tool function.
|
|
2665
|
+
*/
|
|
2666
|
+
'result': string;
|
|
2667
|
+
}
|
|
2553
2668
|
/**
|
|
2554
2669
|
* Definition of a total. There are two types of totals: grand totals and subtotals. Grand total data will be returned in a separate section of the result structure while subtotals are fully integrated into the main result data. The mechanism for this distinction is automatic and it\'s described in `TotalDimension`
|
|
2555
2670
|
*/
|
|
@@ -2679,6 +2794,12 @@ export interface TriggerQualityIssuesCalculationResponse {
|
|
|
2679
2794
|
'status': TriggerQualityIssuesCalculationResponseStatusEnum;
|
|
2680
2795
|
}
|
|
2681
2796
|
export type TriggerQualityIssuesCalculationResponseStatusEnum = 'RUNNING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' | 'DISABLED';
|
|
2797
|
+
/**
|
|
2798
|
+
* Ambient UI state: what the user is currently looking at (dashboard, visible widgets).
|
|
2799
|
+
*/
|
|
2800
|
+
export interface UIContext {
|
|
2801
|
+
'dashboard'?: DashboardContext;
|
|
2802
|
+
}
|
|
2682
2803
|
export interface UpsertKnowledgeDocumentRequestDto {
|
|
2683
2804
|
'filename': string;
|
|
2684
2805
|
'content': string;
|
|
@@ -2693,10 +2814,15 @@ export interface UpsertKnowledgeDocumentResponseDto {
|
|
|
2693
2814
|
'numChunks': number;
|
|
2694
2815
|
}
|
|
2695
2816
|
/**
|
|
2696
|
-
* User context
|
|
2817
|
+
* User context with ambient UI state (view) and explicitly referenced objects.
|
|
2697
2818
|
*/
|
|
2698
2819
|
export interface UserContext {
|
|
2699
|
-
'
|
|
2820
|
+
'view'?: UIContext;
|
|
2821
|
+
/**
|
|
2822
|
+
* Groups of explicitly referenced objects, each optionally scoped by a context (e.g. a dashboard context with widget references).
|
|
2823
|
+
*/
|
|
2824
|
+
'referencedObjects'?: Array<ObjectReferenceGroup>;
|
|
2825
|
+
'activeObject'?: ActiveObjectIdentification;
|
|
2700
2826
|
}
|
|
2701
2827
|
export interface ValidateByItem {
|
|
2702
2828
|
/**
|
|
@@ -2771,6 +2897,31 @@ export interface VisualizationConfig {
|
|
|
2771
2897
|
'clustering'?: ClusteringConfig;
|
|
2772
2898
|
'whatIf'?: WhatIfScenarioConfig;
|
|
2773
2899
|
}
|
|
2900
|
+
/**
|
|
2901
|
+
* Visualization switcher widget allowing users to toggle between multiple visualizations.
|
|
2902
|
+
*/
|
|
2903
|
+
export interface VisualizationSwitcherWidgetDescriptor extends WidgetDescriptor {
|
|
2904
|
+
/**
|
|
2905
|
+
* Widget object ID.
|
|
2906
|
+
*/
|
|
2907
|
+
'widgetId': string;
|
|
2908
|
+
/**
|
|
2909
|
+
* Widget title as displayed on the dashboard.
|
|
2910
|
+
*/
|
|
2911
|
+
'title': string;
|
|
2912
|
+
/**
|
|
2913
|
+
* Signed result ID for the currently active visualization\'s execution result.
|
|
2914
|
+
*/
|
|
2915
|
+
'resultId'?: string;
|
|
2916
|
+
/**
|
|
2917
|
+
* ID of the currently active visualization in the switcher.
|
|
2918
|
+
*/
|
|
2919
|
+
'activeVisualizationId': string;
|
|
2920
|
+
/**
|
|
2921
|
+
* IDs of all visualizations available in the switcher.
|
|
2922
|
+
*/
|
|
2923
|
+
'visualizationIds': Array<string>;
|
|
2924
|
+
}
|
|
2774
2925
|
/**
|
|
2775
2926
|
* Measure adjustments for this scenario
|
|
2776
2927
|
*/
|
|
@@ -2814,6 +2965,14 @@ export interface WhatIfScenarioItem {
|
|
|
2814
2965
|
*/
|
|
2815
2966
|
'adjustments': Array<WhatIfMeasureAdjustmentConfig>;
|
|
2816
2967
|
}
|
|
2968
|
+
/**
|
|
2969
|
+
* Descriptor for a widget on the dashboard.
|
|
2970
|
+
*/
|
|
2971
|
+
export interface WidgetDescriptor {
|
|
2972
|
+
'title': string;
|
|
2973
|
+
'widgetId': string;
|
|
2974
|
+
'widgetType': string;
|
|
2975
|
+
}
|
|
2817
2976
|
export interface WorkflowDashboardSummaryRequestDto {
|
|
2818
2977
|
'dashboardId': string;
|
|
2819
2978
|
'keyMetricIds'?: Array<string>;
|
|
@@ -3728,7 +3887,7 @@ export declare function ActionsApiAxiosParamCreator_OutlierDetectionResult(works
|
|
|
3728
3887
|
*/
|
|
3729
3888
|
export declare function ActionsApiAxiosParamCreator_PatchDocument(workspaceId: string, filename: string, patchKnowledgeDocumentRequestDto: PatchKnowledgeDocumentRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3730
3889
|
/**
|
|
3731
|
-
*
|
|
3890
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
3732
3891
|
* @summary Get Active LLM Endpoints for this workspace
|
|
3733
3892
|
* @param {string} workspaceId Workspace identifier
|
|
3734
3893
|
* @param {*} [options] Override http request option.
|
|
@@ -3736,6 +3895,15 @@ export declare function ActionsApiAxiosParamCreator_PatchDocument(workspaceId: s
|
|
|
3736
3895
|
* @throws {RequiredError}
|
|
3737
3896
|
*/
|
|
3738
3897
|
export declare function ActionsApiAxiosParamCreator_ResolveLlmEndpoints(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3898
|
+
/**
|
|
3899
|
+
* Resolves the active LLM configuration for the given workspace. When the ENABLE_LLM_ENDPOINT_REPLACEMENT feature flag is enabled, returns LLM Providers with their associated models. Otherwise, falls back to the legacy LLM Endpoints.
|
|
3900
|
+
* @summary Get Active LLM configuration for this workspace
|
|
3901
|
+
* @param {string} workspaceId Workspace identifier
|
|
3902
|
+
* @param {*} [options] Override http request option.
|
|
3903
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3904
|
+
* @throws {RequiredError}
|
|
3905
|
+
*/
|
|
3906
|
+
export declare function ActionsApiAxiosParamCreator_ResolveLlmProviders(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3739
3907
|
/**
|
|
3740
3908
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
3741
3909
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -3747,19 +3915,30 @@ export declare function ActionsApiAxiosParamCreator_ResolveLlmEndpoints(workspac
|
|
|
3747
3915
|
*/
|
|
3748
3916
|
export declare function ActionsApiAxiosParamCreator_RetrieveExecutionMetadata(workspaceId: string, resultId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3749
3917
|
/**
|
|
3750
|
-
* Gets a single execution result.
|
|
3918
|
+
* Gets a single execution result.
|
|
3751
3919
|
* @summary Get a single execution result
|
|
3752
3920
|
* @param {string} workspaceId Workspace identifier
|
|
3753
3921
|
* @param {string} resultId Result ID
|
|
3754
|
-
* @param {string} [xGDCCANCELTOKEN]
|
|
3755
3922
|
* @param {Array<number>} [offset] Request page with these offsets. Format is offset=1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
|
|
3756
3923
|
* @param {Array<number>} [limit] Return only this number of items. Format is limit=1,2,3,... - one limit for each dimensions in ResultSpec from originating AFM.
|
|
3757
3924
|
* @param {Array<string>} [excludedTotalDimensions] Identifiers of the dimensions where grand total data should not be returned for this request. A grand total will not be returned if all of its totalDimensions are in excludedTotalDimensions.
|
|
3925
|
+
* @param {string} [xGDCCANCELTOKEN]
|
|
3758
3926
|
* @param {*} [options] Override http request option.
|
|
3759
3927
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3760
3928
|
* @throws {RequiredError}
|
|
3761
3929
|
*/
|
|
3762
|
-
export declare function ActionsApiAxiosParamCreator_RetrieveResult(workspaceId: string, resultId: string,
|
|
3930
|
+
export declare function ActionsApiAxiosParamCreator_RetrieveResult(workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3931
|
+
/**
|
|
3932
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
3933
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
3934
|
+
* @param {string} workspaceId Workspace identifier
|
|
3935
|
+
* @param {string} resultId Result ID
|
|
3936
|
+
* @param {string} [xGDCCANCELTOKEN]
|
|
3937
|
+
* @param {*} [options] Override http request option.
|
|
3938
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3939
|
+
* @throws {RequiredError}
|
|
3940
|
+
*/
|
|
3941
|
+
export declare function ActionsApiAxiosParamCreator_RetrieveResultBinary(workspaceId: string, resultId: string, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3763
3942
|
/**
|
|
3764
3943
|
*
|
|
3765
3944
|
* @param {string} workspaceId Workspace identifier
|
|
@@ -3828,7 +4007,7 @@ export declare function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculat
|
|
|
3828
4007
|
*/
|
|
3829
4008
|
export declare function ActionsApiAxiosParamCreator_UpsertDocument(workspaceId: string, upsertKnowledgeDocumentRequestDto: UpsertKnowledgeDocumentRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3830
4009
|
/**
|
|
3831
|
-
*
|
|
4010
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
3832
4011
|
* @summary Validate LLM Endpoint
|
|
3833
4012
|
* @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
|
|
3834
4013
|
* @param {*} [options] Override http request option.
|
|
@@ -3837,7 +4016,7 @@ export declare function ActionsApiAxiosParamCreator_UpsertDocument(workspaceId:
|
|
|
3837
4016
|
*/
|
|
3838
4017
|
export declare function ActionsApiAxiosParamCreator_ValidateLLMEndpoint(validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3839
4018
|
/**
|
|
3840
|
-
*
|
|
4019
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
3841
4020
|
* @summary Validate LLM Endpoint By Id
|
|
3842
4021
|
* @param {string} llmEndpointId
|
|
3843
4022
|
* @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
|
|
@@ -4270,7 +4449,7 @@ export declare function ActionsApi_OutlierDetectionResult(axios: AxiosInstance,
|
|
|
4270
4449
|
*/
|
|
4271
4450
|
export declare function ActionsApi_PatchDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
4272
4451
|
/**
|
|
4273
|
-
*
|
|
4452
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
4274
4453
|
* @summary Get Active LLM Endpoints for this workspace
|
|
4275
4454
|
* @param {AxiosInstance} axios Axios instance.
|
|
4276
4455
|
* @param {string} basePath Base path.
|
|
@@ -4280,6 +4459,17 @@ export declare function ActionsApi_PatchDocument(axios: AxiosInstance, basePath:
|
|
|
4280
4459
|
* @throws {RequiredError}
|
|
4281
4460
|
*/
|
|
4282
4461
|
export declare function ActionsApi_ResolveLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ResolvedLlmEndpoints>;
|
|
4462
|
+
/**
|
|
4463
|
+
* Resolves the active LLM configuration for the given workspace. When the ENABLE_LLM_ENDPOINT_REPLACEMENT feature flag is enabled, returns LLM Providers with their associated models. Otherwise, falls back to the legacy LLM Endpoints.
|
|
4464
|
+
* @summary Get Active LLM configuration for this workspace
|
|
4465
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4466
|
+
* @param {string} basePath Base path.
|
|
4467
|
+
* @param {ActionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
4468
|
+
* @param {*} [options] Override http request option.
|
|
4469
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4470
|
+
* @throws {RequiredError}
|
|
4471
|
+
*/
|
|
4472
|
+
export declare function ActionsApi_ResolveLlmProviders(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiResolveLlmProvidersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ResolvedLlms>;
|
|
4283
4473
|
/**
|
|
4284
4474
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
4285
4475
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -4292,7 +4482,7 @@ export declare function ActionsApi_ResolveLlmEndpoints(axios: AxiosInstance, bas
|
|
|
4292
4482
|
*/
|
|
4293
4483
|
export declare function ActionsApi_RetrieveExecutionMetadata(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ResultCacheMetadata>;
|
|
4294
4484
|
/**
|
|
4295
|
-
* Gets a single execution result.
|
|
4485
|
+
* Gets a single execution result.
|
|
4296
4486
|
* @summary Get a single execution result
|
|
4297
4487
|
* @param {AxiosInstance} axios Axios instance.
|
|
4298
4488
|
* @param {string} basePath Base path.
|
|
@@ -4302,6 +4492,17 @@ export declare function ActionsApi_RetrieveExecutionMetadata(axios: AxiosInstanc
|
|
|
4302
4492
|
* @throws {RequiredError}
|
|
4303
4493
|
*/
|
|
4304
4494
|
export declare function ActionsApi_RetrieveResult(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ExecutionResult>;
|
|
4495
|
+
/**
|
|
4496
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
4497
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
4498
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4499
|
+
* @param {string} basePath Base path.
|
|
4500
|
+
* @param {ActionsApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
4501
|
+
* @param {*} [options] Override http request option.
|
|
4502
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4503
|
+
* @throws {RequiredError}
|
|
4504
|
+
*/
|
|
4505
|
+
export declare function ActionsApi_RetrieveResultBinary(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<File>;
|
|
4305
4506
|
/**
|
|
4306
4507
|
*
|
|
4307
4508
|
* @param {AxiosInstance} axios Axios instance.
|
|
@@ -4378,7 +4579,7 @@ export declare function ActionsApi_TriggerQualityIssuesCalculation(axios: AxiosI
|
|
|
4378
4579
|
*/
|
|
4379
4580
|
export declare function ActionsApi_UpsertDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
4380
4581
|
/**
|
|
4381
|
-
*
|
|
4582
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
4382
4583
|
* @summary Validate LLM Endpoint
|
|
4383
4584
|
* @param {AxiosInstance} axios Axios instance.
|
|
4384
4585
|
* @param {string} basePath Base path.
|
|
@@ -4389,7 +4590,7 @@ export declare function ActionsApi_UpsertDocument(axios: AxiosInstance, basePath
|
|
|
4389
4590
|
*/
|
|
4390
4591
|
export declare function ActionsApi_ValidateLLMEndpoint(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
4391
4592
|
/**
|
|
4392
|
-
*
|
|
4593
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
4393
4594
|
* @summary Validate LLM Endpoint By Id
|
|
4394
4595
|
* @param {AxiosInstance} axios Axios instance.
|
|
4395
4596
|
* @param {string} basePath Base path.
|
|
@@ -4751,14 +4952,24 @@ export interface ActionsApiInterface {
|
|
|
4751
4952
|
*/
|
|
4752
4953
|
patchDocument(requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
4753
4954
|
/**
|
|
4754
|
-
*
|
|
4955
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
4755
4956
|
* @summary Get Active LLM Endpoints for this workspace
|
|
4756
4957
|
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
4757
4958
|
* @param {*} [options] Override http request option.
|
|
4959
|
+
* @deprecated
|
|
4758
4960
|
* @throws {RequiredError}
|
|
4759
4961
|
* @memberof ActionsApiInterface
|
|
4760
4962
|
*/
|
|
4761
4963
|
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
4964
|
+
/**
|
|
4965
|
+
* Resolves the active LLM configuration for the given workspace. When the ENABLE_LLM_ENDPOINT_REPLACEMENT feature flag is enabled, returns LLM Providers with their associated models. Otherwise, falls back to the legacy LLM Endpoints.
|
|
4966
|
+
* @summary Get Active LLM configuration for this workspace
|
|
4967
|
+
* @param {ActionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
4968
|
+
* @param {*} [options] Override http request option.
|
|
4969
|
+
* @throws {RequiredError}
|
|
4970
|
+
* @memberof ActionsApiInterface
|
|
4971
|
+
*/
|
|
4972
|
+
resolveLlmProviders(requestParameters: ActionsApiResolveLlmProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlms>;
|
|
4762
4973
|
/**
|
|
4763
4974
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
4764
4975
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -4769,7 +4980,7 @@ export interface ActionsApiInterface {
|
|
|
4769
4980
|
*/
|
|
4770
4981
|
retrieveExecutionMetadata(requestParameters: ActionsApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<ResultCacheMetadata>;
|
|
4771
4982
|
/**
|
|
4772
|
-
* Gets a single execution result.
|
|
4983
|
+
* Gets a single execution result.
|
|
4773
4984
|
* @summary Get a single execution result
|
|
4774
4985
|
* @param {ActionsApiRetrieveResultRequest} requestParameters Request parameters.
|
|
4775
4986
|
* @param {*} [options] Override http request option.
|
|
@@ -4777,6 +4988,15 @@ export interface ActionsApiInterface {
|
|
|
4777
4988
|
* @memberof ActionsApiInterface
|
|
4778
4989
|
*/
|
|
4779
4990
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
4991
|
+
/**
|
|
4992
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
4993
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
4994
|
+
* @param {ActionsApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
4995
|
+
* @param {*} [options] Override http request option.
|
|
4996
|
+
* @throws {RequiredError}
|
|
4997
|
+
* @memberof ActionsApiInterface
|
|
4998
|
+
*/
|
|
4999
|
+
retrieveResultBinary(requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
4780
5000
|
/**
|
|
4781
5001
|
*
|
|
4782
5002
|
* @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
|
|
@@ -4839,19 +5059,21 @@ export interface ActionsApiInterface {
|
|
|
4839
5059
|
*/
|
|
4840
5060
|
upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
4841
5061
|
/**
|
|
4842
|
-
*
|
|
5062
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
4843
5063
|
* @summary Validate LLM Endpoint
|
|
4844
5064
|
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
4845
5065
|
* @param {*} [options] Override http request option.
|
|
5066
|
+
* @deprecated
|
|
4846
5067
|
* @throws {RequiredError}
|
|
4847
5068
|
* @memberof ActionsApiInterface
|
|
4848
5069
|
*/
|
|
4849
5070
|
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
4850
5071
|
/**
|
|
4851
|
-
*
|
|
5072
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
4852
5073
|
* @summary Validate LLM Endpoint By Id
|
|
4853
5074
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
4854
5075
|
* @param {*} [options] Override http request option.
|
|
5076
|
+
* @deprecated
|
|
4855
5077
|
* @throws {RequiredError}
|
|
4856
5078
|
* @memberof ActionsApiInterface
|
|
4857
5079
|
*/
|
|
@@ -5755,6 +5977,19 @@ export interface ActionsApiResolveLlmEndpointsRequest {
|
|
|
5755
5977
|
*/
|
|
5756
5978
|
readonly workspaceId: string;
|
|
5757
5979
|
}
|
|
5980
|
+
/**
|
|
5981
|
+
* Request parameters for resolveLlmProviders operation in ActionsApi.
|
|
5982
|
+
* @export
|
|
5983
|
+
* @interface ActionsApiResolveLlmProvidersRequest
|
|
5984
|
+
*/
|
|
5985
|
+
export interface ActionsApiResolveLlmProvidersRequest {
|
|
5986
|
+
/**
|
|
5987
|
+
* Workspace identifier
|
|
5988
|
+
* @type {string}
|
|
5989
|
+
* @memberof ActionsApiResolveLlmProviders
|
|
5990
|
+
*/
|
|
5991
|
+
readonly workspaceId: string;
|
|
5992
|
+
}
|
|
5758
5993
|
/**
|
|
5759
5994
|
* Request parameters for retrieveExecutionMetadata operation in ActionsApi.
|
|
5760
5995
|
* @export
|
|
@@ -5792,12 +6027,6 @@ export interface ActionsApiRetrieveResultRequest {
|
|
|
5792
6027
|
* @memberof ActionsApiRetrieveResult
|
|
5793
6028
|
*/
|
|
5794
6029
|
readonly resultId: string;
|
|
5795
|
-
/**
|
|
5796
|
-
*
|
|
5797
|
-
* @type {string}
|
|
5798
|
-
* @memberof ActionsApiRetrieveResult
|
|
5799
|
-
*/
|
|
5800
|
-
readonly xGDCCANCELTOKEN?: string;
|
|
5801
6030
|
/**
|
|
5802
6031
|
* Request page with these offsets. Format is offset=1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
|
|
5803
6032
|
* @type {Array<number>}
|
|
@@ -5816,6 +6045,37 @@ export interface ActionsApiRetrieveResultRequest {
|
|
|
5816
6045
|
* @memberof ActionsApiRetrieveResult
|
|
5817
6046
|
*/
|
|
5818
6047
|
readonly excludedTotalDimensions?: Array<string>;
|
|
6048
|
+
/**
|
|
6049
|
+
*
|
|
6050
|
+
* @type {string}
|
|
6051
|
+
* @memberof ActionsApiRetrieveResult
|
|
6052
|
+
*/
|
|
6053
|
+
readonly xGDCCANCELTOKEN?: string;
|
|
6054
|
+
}
|
|
6055
|
+
/**
|
|
6056
|
+
* Request parameters for retrieveResultBinary operation in ActionsApi.
|
|
6057
|
+
* @export
|
|
6058
|
+
* @interface ActionsApiRetrieveResultBinaryRequest
|
|
6059
|
+
*/
|
|
6060
|
+
export interface ActionsApiRetrieveResultBinaryRequest {
|
|
6061
|
+
/**
|
|
6062
|
+
* Workspace identifier
|
|
6063
|
+
* @type {string}
|
|
6064
|
+
* @memberof ActionsApiRetrieveResultBinary
|
|
6065
|
+
*/
|
|
6066
|
+
readonly workspaceId: string;
|
|
6067
|
+
/**
|
|
6068
|
+
* Result ID
|
|
6069
|
+
* @type {string}
|
|
6070
|
+
* @memberof ActionsApiRetrieveResultBinary
|
|
6071
|
+
*/
|
|
6072
|
+
readonly resultId: string;
|
|
6073
|
+
/**
|
|
6074
|
+
*
|
|
6075
|
+
* @type {string}
|
|
6076
|
+
* @memberof ActionsApiRetrieveResultBinary
|
|
6077
|
+
*/
|
|
6078
|
+
readonly xGDCCANCELTOKEN?: string;
|
|
5819
6079
|
}
|
|
5820
6080
|
/**
|
|
5821
6081
|
* Request parameters for searchKnowledge operation in ActionsApi.
|
|
@@ -6329,14 +6589,24 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6329
6589
|
*/
|
|
6330
6590
|
patchDocument(requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
6331
6591
|
/**
|
|
6332
|
-
*
|
|
6592
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
6333
6593
|
* @summary Get Active LLM Endpoints for this workspace
|
|
6334
6594
|
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
6335
6595
|
* @param {*} [options] Override http request option.
|
|
6596
|
+
* @deprecated
|
|
6336
6597
|
* @throws {RequiredError}
|
|
6337
6598
|
* @memberof ActionsApi
|
|
6338
6599
|
*/
|
|
6339
6600
|
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
6601
|
+
/**
|
|
6602
|
+
* Resolves the active LLM configuration for the given workspace. When the ENABLE_LLM_ENDPOINT_REPLACEMENT feature flag is enabled, returns LLM Providers with their associated models. Otherwise, falls back to the legacy LLM Endpoints.
|
|
6603
|
+
* @summary Get Active LLM configuration for this workspace
|
|
6604
|
+
* @param {ActionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
6605
|
+
* @param {*} [options] Override http request option.
|
|
6606
|
+
* @throws {RequiredError}
|
|
6607
|
+
* @memberof ActionsApi
|
|
6608
|
+
*/
|
|
6609
|
+
resolveLlmProviders(requestParameters: ActionsApiResolveLlmProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlms>;
|
|
6340
6610
|
/**
|
|
6341
6611
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
6342
6612
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -6347,7 +6617,7 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6347
6617
|
*/
|
|
6348
6618
|
retrieveExecutionMetadata(requestParameters: ActionsApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<ResultCacheMetadata>;
|
|
6349
6619
|
/**
|
|
6350
|
-
* Gets a single execution result.
|
|
6620
|
+
* Gets a single execution result.
|
|
6351
6621
|
* @summary Get a single execution result
|
|
6352
6622
|
* @param {ActionsApiRetrieveResultRequest} requestParameters Request parameters.
|
|
6353
6623
|
* @param {*} [options] Override http request option.
|
|
@@ -6355,6 +6625,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6355
6625
|
* @memberof ActionsApi
|
|
6356
6626
|
*/
|
|
6357
6627
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
6628
|
+
/**
|
|
6629
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
6630
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
6631
|
+
* @param {ActionsApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
6632
|
+
* @param {*} [options] Override http request option.
|
|
6633
|
+
* @throws {RequiredError}
|
|
6634
|
+
* @memberof ActionsApi
|
|
6635
|
+
*/
|
|
6636
|
+
retrieveResultBinary(requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
6358
6637
|
/**
|
|
6359
6638
|
*
|
|
6360
6639
|
* @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
|
|
@@ -6417,19 +6696,21 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6417
6696
|
*/
|
|
6418
6697
|
upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
6419
6698
|
/**
|
|
6420
|
-
*
|
|
6699
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
6421
6700
|
* @summary Validate LLM Endpoint
|
|
6422
6701
|
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
6423
6702
|
* @param {*} [options] Override http request option.
|
|
6703
|
+
* @deprecated
|
|
6424
6704
|
* @throws {RequiredError}
|
|
6425
6705
|
* @memberof ActionsApi
|
|
6426
6706
|
*/
|
|
6427
6707
|
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
6428
6708
|
/**
|
|
6429
|
-
*
|
|
6709
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
6430
6710
|
* @summary Validate LLM Endpoint By Id
|
|
6431
6711
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
6432
6712
|
* @param {*} [options] Override http request option.
|
|
6713
|
+
* @deprecated
|
|
6433
6714
|
* @throws {RequiredError}
|
|
6434
6715
|
* @memberof ActionsApi
|
|
6435
6716
|
*/
|
|
@@ -6578,19 +6859,30 @@ export declare function ComputationApiAxiosParamCreator_OutlierDetectionResult(w
|
|
|
6578
6859
|
*/
|
|
6579
6860
|
export declare function ComputationApiAxiosParamCreator_RetrieveExecutionMetadata(workspaceId: string, resultId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6580
6861
|
/**
|
|
6581
|
-
* Gets a single execution result.
|
|
6862
|
+
* Gets a single execution result.
|
|
6582
6863
|
* @summary Get a single execution result
|
|
6583
6864
|
* @param {string} workspaceId Workspace identifier
|
|
6584
6865
|
* @param {string} resultId Result ID
|
|
6585
|
-
* @param {string} [xGDCCANCELTOKEN]
|
|
6586
6866
|
* @param {Array<number>} [offset] Request page with these offsets. Format is offset=1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
|
|
6587
6867
|
* @param {Array<number>} [limit] Return only this number of items. Format is limit=1,2,3,... - one limit for each dimensions in ResultSpec from originating AFM.
|
|
6588
6868
|
* @param {Array<string>} [excludedTotalDimensions] Identifiers of the dimensions where grand total data should not be returned for this request. A grand total will not be returned if all of its totalDimensions are in excludedTotalDimensions.
|
|
6869
|
+
* @param {string} [xGDCCANCELTOKEN]
|
|
6589
6870
|
* @param {*} [options] Override http request option.
|
|
6590
6871
|
* @param {Configuration} [configuration] Optional configuration.
|
|
6591
6872
|
* @throws {RequiredError}
|
|
6592
6873
|
*/
|
|
6593
|
-
export declare function ComputationApiAxiosParamCreator_RetrieveResult(workspaceId: string, resultId: string,
|
|
6874
|
+
export declare function ComputationApiAxiosParamCreator_RetrieveResult(workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6875
|
+
/**
|
|
6876
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
6877
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
6878
|
+
* @param {string} workspaceId Workspace identifier
|
|
6879
|
+
* @param {string} resultId Result ID
|
|
6880
|
+
* @param {string} [xGDCCANCELTOKEN]
|
|
6881
|
+
* @param {*} [options] Override http request option.
|
|
6882
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
6883
|
+
* @throws {RequiredError}
|
|
6884
|
+
*/
|
|
6885
|
+
export declare function ComputationApiAxiosParamCreator_RetrieveResultBinary(workspaceId: string, resultId: string, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6594
6886
|
/**
|
|
6595
6887
|
* 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.
|
|
6596
6888
|
* @summary Applies all the given cancel tokens.
|
|
@@ -6735,7 +7027,7 @@ export declare function ComputationApi_OutlierDetectionResult(axios: AxiosInstan
|
|
|
6735
7027
|
*/
|
|
6736
7028
|
export declare function ComputationApi_RetrieveExecutionMetadata(axios: AxiosInstance, basePath: string, requestParameters: ComputationApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ResultCacheMetadata>;
|
|
6737
7029
|
/**
|
|
6738
|
-
* Gets a single execution result.
|
|
7030
|
+
* Gets a single execution result.
|
|
6739
7031
|
* @summary Get a single execution result
|
|
6740
7032
|
* @param {AxiosInstance} axios Axios instance.
|
|
6741
7033
|
* @param {string} basePath Base path.
|
|
@@ -6745,6 +7037,17 @@ export declare function ComputationApi_RetrieveExecutionMetadata(axios: AxiosIns
|
|
|
6745
7037
|
* @throws {RequiredError}
|
|
6746
7038
|
*/
|
|
6747
7039
|
export declare function ComputationApi_RetrieveResult(axios: AxiosInstance, basePath: string, requestParameters: ComputationApiRetrieveResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ExecutionResult>;
|
|
7040
|
+
/**
|
|
7041
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
7042
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
7043
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
7044
|
+
* @param {string} basePath Base path.
|
|
7045
|
+
* @param {ComputationApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
7046
|
+
* @param {*} [options] Override http request option.
|
|
7047
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
7048
|
+
* @throws {RequiredError}
|
|
7049
|
+
*/
|
|
7050
|
+
export declare function ComputationApi_RetrieveResultBinary(axios: AxiosInstance, basePath: string, requestParameters: ComputationApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<File>;
|
|
6748
7051
|
/**
|
|
6749
7052
|
* ComputationApi - interface
|
|
6750
7053
|
* @export
|
|
@@ -6869,7 +7172,7 @@ export interface ComputationApiInterface {
|
|
|
6869
7172
|
*/
|
|
6870
7173
|
retrieveExecutionMetadata(requestParameters: ComputationApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<ResultCacheMetadata>;
|
|
6871
7174
|
/**
|
|
6872
|
-
* Gets a single execution result.
|
|
7175
|
+
* Gets a single execution result.
|
|
6873
7176
|
* @summary Get a single execution result
|
|
6874
7177
|
* @param {ComputationApiRetrieveResultRequest} requestParameters Request parameters.
|
|
6875
7178
|
* @param {*} [options] Override http request option.
|
|
@@ -6877,6 +7180,15 @@ export interface ComputationApiInterface {
|
|
|
6877
7180
|
* @memberof ComputationApiInterface
|
|
6878
7181
|
*/
|
|
6879
7182
|
retrieveResult(requestParameters: ComputationApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
7183
|
+
/**
|
|
7184
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
7185
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
7186
|
+
* @param {ComputationApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
7187
|
+
* @param {*} [options] Override http request option.
|
|
7188
|
+
* @throws {RequiredError}
|
|
7189
|
+
* @memberof ComputationApiInterface
|
|
7190
|
+
*/
|
|
7191
|
+
retrieveResultBinary(requestParameters: ComputationApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
6880
7192
|
}
|
|
6881
7193
|
/**
|
|
6882
7194
|
* Request parameters for cancelExecutions operation in ComputationApi.
|
|
@@ -7215,12 +7527,6 @@ export interface ComputationApiRetrieveResultRequest {
|
|
|
7215
7527
|
* @memberof ComputationApiRetrieveResult
|
|
7216
7528
|
*/
|
|
7217
7529
|
readonly resultId: string;
|
|
7218
|
-
/**
|
|
7219
|
-
*
|
|
7220
|
-
* @type {string}
|
|
7221
|
-
* @memberof ComputationApiRetrieveResult
|
|
7222
|
-
*/
|
|
7223
|
-
readonly xGDCCANCELTOKEN?: string;
|
|
7224
7530
|
/**
|
|
7225
7531
|
* Request page with these offsets. Format is offset=1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
|
|
7226
7532
|
* @type {Array<number>}
|
|
@@ -7239,6 +7545,37 @@ export interface ComputationApiRetrieveResultRequest {
|
|
|
7239
7545
|
* @memberof ComputationApiRetrieveResult
|
|
7240
7546
|
*/
|
|
7241
7547
|
readonly excludedTotalDimensions?: Array<string>;
|
|
7548
|
+
/**
|
|
7549
|
+
*
|
|
7550
|
+
* @type {string}
|
|
7551
|
+
* @memberof ComputationApiRetrieveResult
|
|
7552
|
+
*/
|
|
7553
|
+
readonly xGDCCANCELTOKEN?: string;
|
|
7554
|
+
}
|
|
7555
|
+
/**
|
|
7556
|
+
* Request parameters for retrieveResultBinary operation in ComputationApi.
|
|
7557
|
+
* @export
|
|
7558
|
+
* @interface ComputationApiRetrieveResultBinaryRequest
|
|
7559
|
+
*/
|
|
7560
|
+
export interface ComputationApiRetrieveResultBinaryRequest {
|
|
7561
|
+
/**
|
|
7562
|
+
* Workspace identifier
|
|
7563
|
+
* @type {string}
|
|
7564
|
+
* @memberof ComputationApiRetrieveResultBinary
|
|
7565
|
+
*/
|
|
7566
|
+
readonly workspaceId: string;
|
|
7567
|
+
/**
|
|
7568
|
+
* Result ID
|
|
7569
|
+
* @type {string}
|
|
7570
|
+
* @memberof ComputationApiRetrieveResultBinary
|
|
7571
|
+
*/
|
|
7572
|
+
readonly resultId: string;
|
|
7573
|
+
/**
|
|
7574
|
+
*
|
|
7575
|
+
* @type {string}
|
|
7576
|
+
* @memberof ComputationApiRetrieveResultBinary
|
|
7577
|
+
*/
|
|
7578
|
+
readonly xGDCCANCELTOKEN?: string;
|
|
7242
7579
|
}
|
|
7243
7580
|
/**
|
|
7244
7581
|
* ComputationApi - object-oriented interface
|
|
@@ -7365,7 +7702,7 @@ export declare class ComputationApi extends BaseAPI implements ComputationApiInt
|
|
|
7365
7702
|
*/
|
|
7366
7703
|
retrieveExecutionMetadata(requestParameters: ComputationApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<ResultCacheMetadata>;
|
|
7367
7704
|
/**
|
|
7368
|
-
* Gets a single execution result.
|
|
7705
|
+
* Gets a single execution result.
|
|
7369
7706
|
* @summary Get a single execution result
|
|
7370
7707
|
* @param {ComputationApiRetrieveResultRequest} requestParameters Request parameters.
|
|
7371
7708
|
* @param {*} [options] Override http request option.
|
|
@@ -7373,6 +7710,15 @@ export declare class ComputationApi extends BaseAPI implements ComputationApiInt
|
|
|
7373
7710
|
* @memberof ComputationApi
|
|
7374
7711
|
*/
|
|
7375
7712
|
retrieveResult(requestParameters: ComputationApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
7713
|
+
/**
|
|
7714
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
7715
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
7716
|
+
* @param {ComputationApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
7717
|
+
* @param {*} [options] Override http request option.
|
|
7718
|
+
* @throws {RequiredError}
|
|
7719
|
+
* @memberof ComputationApi
|
|
7720
|
+
*/
|
|
7721
|
+
retrieveResultBinary(requestParameters: ComputationApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
7376
7722
|
}
|
|
7377
7723
|
/**
|
|
7378
7724
|
* (BETA) Combines multiple use cases such as search, create visualizations, ...
|
|
@@ -7571,7 +7917,7 @@ export declare function SmartFunctionsApiAxiosParamCreator_ListLlmProviderModels
|
|
|
7571
7917
|
*/
|
|
7572
7918
|
export declare function SmartFunctionsApiAxiosParamCreator_MemoryCreatedByUsers(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
7573
7919
|
/**
|
|
7574
|
-
*
|
|
7920
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
7575
7921
|
* @summary Get Active LLM Endpoints for this workspace
|
|
7576
7922
|
* @param {string} workspaceId Workspace identifier
|
|
7577
7923
|
* @param {*} [options] Override http request option.
|
|
@@ -7579,6 +7925,15 @@ export declare function SmartFunctionsApiAxiosParamCreator_MemoryCreatedByUsers(
|
|
|
7579
7925
|
* @throws {RequiredError}
|
|
7580
7926
|
*/
|
|
7581
7927
|
export declare function SmartFunctionsApiAxiosParamCreator_ResolveLlmEndpoints(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
7928
|
+
/**
|
|
7929
|
+
* Resolves the active LLM configuration for the given workspace. When the ENABLE_LLM_ENDPOINT_REPLACEMENT feature flag is enabled, returns LLM Providers with their associated models. Otherwise, falls back to the legacy LLM Endpoints.
|
|
7930
|
+
* @summary Get Active LLM configuration for this workspace
|
|
7931
|
+
* @param {string} workspaceId Workspace identifier
|
|
7932
|
+
* @param {*} [options] Override http request option.
|
|
7933
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
7934
|
+
* @throws {RequiredError}
|
|
7935
|
+
*/
|
|
7936
|
+
export declare function SmartFunctionsApiAxiosParamCreator_ResolveLlmProviders(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
7582
7937
|
/**
|
|
7583
7938
|
* Returns a list of tags for this workspace
|
|
7584
7939
|
* @summary Get Analytics Catalog Tags
|
|
@@ -7626,7 +7981,7 @@ export declare function SmartFunctionsApiAxiosParamCreator_TrendingObjects(works
|
|
|
7626
7981
|
*/
|
|
7627
7982
|
export declare function SmartFunctionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
7628
7983
|
/**
|
|
7629
|
-
*
|
|
7984
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
7630
7985
|
* @summary Validate LLM Endpoint
|
|
7631
7986
|
* @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
|
|
7632
7987
|
* @param {*} [options] Override http request option.
|
|
@@ -7635,7 +7990,7 @@ export declare function SmartFunctionsApiAxiosParamCreator_TriggerQualityIssuesC
|
|
|
7635
7990
|
*/
|
|
7636
7991
|
export declare function SmartFunctionsApiAxiosParamCreator_ValidateLLMEndpoint(validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
7637
7992
|
/**
|
|
7638
|
-
*
|
|
7993
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
7639
7994
|
* @summary Validate LLM Endpoint By Id
|
|
7640
7995
|
* @param {string} llmEndpointId
|
|
7641
7996
|
* @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
|
|
@@ -7854,7 +8209,7 @@ export declare function SmartFunctionsApi_ListLlmProviderModelsById(axios: Axios
|
|
|
7854
8209
|
*/
|
|
7855
8210
|
export declare function SmartFunctionsApi_MemoryCreatedByUsers(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<MemoryItemCreatedByUsers>;
|
|
7856
8211
|
/**
|
|
7857
|
-
*
|
|
8212
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
7858
8213
|
* @summary Get Active LLM Endpoints for this workspace
|
|
7859
8214
|
* @param {AxiosInstance} axios Axios instance.
|
|
7860
8215
|
* @param {string} basePath Base path.
|
|
@@ -7864,6 +8219,17 @@ export declare function SmartFunctionsApi_MemoryCreatedByUsers(axios: AxiosInsta
|
|
|
7864
8219
|
* @throws {RequiredError}
|
|
7865
8220
|
*/
|
|
7866
8221
|
export declare function SmartFunctionsApi_ResolveLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ResolvedLlmEndpoints>;
|
|
8222
|
+
/**
|
|
8223
|
+
* Resolves the active LLM configuration for the given workspace. When the ENABLE_LLM_ENDPOINT_REPLACEMENT feature flag is enabled, returns LLM Providers with their associated models. Otherwise, falls back to the legacy LLM Endpoints.
|
|
8224
|
+
* @summary Get Active LLM configuration for this workspace
|
|
8225
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
8226
|
+
* @param {string} basePath Base path.
|
|
8227
|
+
* @param {SmartFunctionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
8228
|
+
* @param {*} [options] Override http request option.
|
|
8229
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
8230
|
+
* @throws {RequiredError}
|
|
8231
|
+
*/
|
|
8232
|
+
export declare function SmartFunctionsApi_ResolveLlmProviders(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiResolveLlmProvidersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ResolvedLlms>;
|
|
7867
8233
|
/**
|
|
7868
8234
|
* Returns a list of tags for this workspace
|
|
7869
8235
|
* @summary Get Analytics Catalog Tags
|
|
@@ -7920,7 +8286,7 @@ export declare function SmartFunctionsApi_TrendingObjects(axios: AxiosInstance,
|
|
|
7920
8286
|
*/
|
|
7921
8287
|
export declare function SmartFunctionsApi_TriggerQualityIssuesCalculation(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
7922
8288
|
/**
|
|
7923
|
-
*
|
|
8289
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
7924
8290
|
* @summary Validate LLM Endpoint
|
|
7925
8291
|
* @param {AxiosInstance} axios Axios instance.
|
|
7926
8292
|
* @param {string} basePath Base path.
|
|
@@ -7931,7 +8297,7 @@ export declare function SmartFunctionsApi_TriggerQualityIssuesCalculation(axios:
|
|
|
7931
8297
|
*/
|
|
7932
8298
|
export declare function SmartFunctionsApi_ValidateLLMEndpoint(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
7933
8299
|
/**
|
|
7934
|
-
*
|
|
8300
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
7935
8301
|
* @summary Validate LLM Endpoint By Id
|
|
7936
8302
|
* @param {AxiosInstance} axios Axios instance.
|
|
7937
8303
|
* @param {string} basePath Base path.
|
|
@@ -8119,14 +8485,24 @@ export interface SmartFunctionsApiInterface {
|
|
|
8119
8485
|
*/
|
|
8120
8486
|
memoryCreatedByUsers(requestParameters: SmartFunctionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItemCreatedByUsers>;
|
|
8121
8487
|
/**
|
|
8122
|
-
*
|
|
8488
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
8123
8489
|
* @summary Get Active LLM Endpoints for this workspace
|
|
8124
8490
|
* @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
8125
8491
|
* @param {*} [options] Override http request option.
|
|
8492
|
+
* @deprecated
|
|
8126
8493
|
* @throws {RequiredError}
|
|
8127
8494
|
* @memberof SmartFunctionsApiInterface
|
|
8128
8495
|
*/
|
|
8129
8496
|
resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
8497
|
+
/**
|
|
8498
|
+
* Resolves the active LLM configuration for the given workspace. When the ENABLE_LLM_ENDPOINT_REPLACEMENT feature flag is enabled, returns LLM Providers with their associated models. Otherwise, falls back to the legacy LLM Endpoints.
|
|
8499
|
+
* @summary Get Active LLM configuration for this workspace
|
|
8500
|
+
* @param {SmartFunctionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
8501
|
+
* @param {*} [options] Override http request option.
|
|
8502
|
+
* @throws {RequiredError}
|
|
8503
|
+
* @memberof SmartFunctionsApiInterface
|
|
8504
|
+
*/
|
|
8505
|
+
resolveLlmProviders(requestParameters: SmartFunctionsApiResolveLlmProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlms>;
|
|
8130
8506
|
/**
|
|
8131
8507
|
* Returns a list of tags for this workspace
|
|
8132
8508
|
* @summary Get Analytics Catalog Tags
|
|
@@ -8173,19 +8549,21 @@ export interface SmartFunctionsApiInterface {
|
|
|
8173
8549
|
*/
|
|
8174
8550
|
triggerQualityIssuesCalculation(requestParameters: SmartFunctionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
8175
8551
|
/**
|
|
8176
|
-
*
|
|
8552
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
8177
8553
|
* @summary Validate LLM Endpoint
|
|
8178
8554
|
* @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
8179
8555
|
* @param {*} [options] Override http request option.
|
|
8556
|
+
* @deprecated
|
|
8180
8557
|
* @throws {RequiredError}
|
|
8181
8558
|
* @memberof SmartFunctionsApiInterface
|
|
8182
8559
|
*/
|
|
8183
8560
|
validateLLMEndpoint(requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
8184
8561
|
/**
|
|
8185
|
-
*
|
|
8562
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
8186
8563
|
* @summary Validate LLM Endpoint By Id
|
|
8187
8564
|
* @param {SmartFunctionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
8188
8565
|
* @param {*} [options] Override http request option.
|
|
8566
|
+
* @deprecated
|
|
8189
8567
|
* @throws {RequiredError}
|
|
8190
8568
|
* @memberof SmartFunctionsApiInterface
|
|
8191
8569
|
*/
|
|
@@ -8601,6 +8979,19 @@ export interface SmartFunctionsApiResolveLlmEndpointsRequest {
|
|
|
8601
8979
|
*/
|
|
8602
8980
|
readonly workspaceId: string;
|
|
8603
8981
|
}
|
|
8982
|
+
/**
|
|
8983
|
+
* Request parameters for resolveLlmProviders operation in SmartFunctionsApi.
|
|
8984
|
+
* @export
|
|
8985
|
+
* @interface SmartFunctionsApiResolveLlmProvidersRequest
|
|
8986
|
+
*/
|
|
8987
|
+
export interface SmartFunctionsApiResolveLlmProvidersRequest {
|
|
8988
|
+
/**
|
|
8989
|
+
* Workspace identifier
|
|
8990
|
+
* @type {string}
|
|
8991
|
+
* @memberof SmartFunctionsApiResolveLlmProviders
|
|
8992
|
+
*/
|
|
8993
|
+
readonly workspaceId: string;
|
|
8994
|
+
}
|
|
8604
8995
|
/**
|
|
8605
8996
|
* Request parameters for tags operation in SmartFunctionsApi.
|
|
8606
8997
|
* @export
|
|
@@ -8883,14 +9274,24 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
8883
9274
|
*/
|
|
8884
9275
|
memoryCreatedByUsers(requestParameters: SmartFunctionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItemCreatedByUsers>;
|
|
8885
9276
|
/**
|
|
8886
|
-
*
|
|
9277
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
8887
9278
|
* @summary Get Active LLM Endpoints for this workspace
|
|
8888
9279
|
* @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
8889
9280
|
* @param {*} [options] Override http request option.
|
|
9281
|
+
* @deprecated
|
|
8890
9282
|
* @throws {RequiredError}
|
|
8891
9283
|
* @memberof SmartFunctionsApi
|
|
8892
9284
|
*/
|
|
8893
9285
|
resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
9286
|
+
/**
|
|
9287
|
+
* Resolves the active LLM configuration for the given workspace. When the ENABLE_LLM_ENDPOINT_REPLACEMENT feature flag is enabled, returns LLM Providers with their associated models. Otherwise, falls back to the legacy LLM Endpoints.
|
|
9288
|
+
* @summary Get Active LLM configuration for this workspace
|
|
9289
|
+
* @param {SmartFunctionsApiResolveLlmProvidersRequest} requestParameters Request parameters.
|
|
9290
|
+
* @param {*} [options] Override http request option.
|
|
9291
|
+
* @throws {RequiredError}
|
|
9292
|
+
* @memberof SmartFunctionsApi
|
|
9293
|
+
*/
|
|
9294
|
+
resolveLlmProviders(requestParameters: SmartFunctionsApiResolveLlmProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlms>;
|
|
8894
9295
|
/**
|
|
8895
9296
|
* Returns a list of tags for this workspace
|
|
8896
9297
|
* @summary Get Analytics Catalog Tags
|
|
@@ -8937,19 +9338,21 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
8937
9338
|
*/
|
|
8938
9339
|
triggerQualityIssuesCalculation(requestParameters: SmartFunctionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
8939
9340
|
/**
|
|
8940
|
-
*
|
|
9341
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
8941
9342
|
* @summary Validate LLM Endpoint
|
|
8942
9343
|
* @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
8943
9344
|
* @param {*} [options] Override http request option.
|
|
9345
|
+
* @deprecated
|
|
8944
9346
|
* @throws {RequiredError}
|
|
8945
9347
|
* @memberof SmartFunctionsApi
|
|
8946
9348
|
*/
|
|
8947
9349
|
validateLLMEndpoint(requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
8948
9350
|
/**
|
|
8949
|
-
*
|
|
9351
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
8950
9352
|
* @summary Validate LLM Endpoint By Id
|
|
8951
9353
|
* @param {SmartFunctionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
8952
9354
|
* @param {*} [options] Override http request option.
|
|
9355
|
+
* @deprecated
|
|
8953
9356
|
* @throws {RequiredError}
|
|
8954
9357
|
* @memberof SmartFunctionsApi
|
|
8955
9358
|
*/
|