@gooddata/api-client-tiger 10.33.0-alpha.8 → 10.33.0-alpha.81
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.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/__version.js.map +1 -1
- package/esm/api-client-tiger.d.ts +12630 -9311
- package/esm/client.d.ts +3 -3
- package/esm/client.d.ts.map +1 -1
- package/esm/client.js +2 -2
- package/esm/client.js.map +1 -1
- package/esm/export.d.ts +2 -4
- package/esm/export.d.ts.map +1 -1
- package/esm/export.js +2 -3
- package/esm/export.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +376 -13
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +305 -4
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +180 -2
- package/esm/generated/automation-json-api/api.d.ts +473 -1
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +74 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +391 -2
- package/esm/generated/export-json-api/api.d.ts +1129 -1074
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +363 -342
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +50 -1
- package/esm/generated/metadata-json-api/api.d.ts +1874 -1222
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +307 -46
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +8012 -7558
- package/esm/index.d.ts +5 -3
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +2 -1
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -803,6 +803,55 @@ export interface AttributeResultHeader {
|
|
|
803
803
|
*/
|
|
804
804
|
primaryLabelValue: string;
|
|
805
805
|
}
|
|
806
|
+
/**
|
|
807
|
+
* Bounding filter for this relative date filter. This can be used to limit the range of the relative date filter to a specific date range.
|
|
808
|
+
* @export
|
|
809
|
+
* @interface BoundedFilter
|
|
810
|
+
*/
|
|
811
|
+
export interface BoundedFilter {
|
|
812
|
+
/**
|
|
813
|
+
*
|
|
814
|
+
* @type {AfmObjectIdentifierDataset}
|
|
815
|
+
* @memberof BoundedFilter
|
|
816
|
+
*/
|
|
817
|
+
dataset: AfmObjectIdentifierDataset;
|
|
818
|
+
/**
|
|
819
|
+
* Date granularity specifying particular date attribute in given dimension.
|
|
820
|
+
* @type {string}
|
|
821
|
+
* @memberof BoundedFilter
|
|
822
|
+
*/
|
|
823
|
+
granularity: BoundedFilterGranularityEnum;
|
|
824
|
+
/**
|
|
825
|
+
* Start of the filtering interval. Specified by number of periods (with respect to given granularity). Typically negative (historical time interval like -2 for \'2 days/weeks, ... ago\'). If null, then start of the range is unbounded.
|
|
826
|
+
* @type {number}
|
|
827
|
+
* @memberof BoundedFilter
|
|
828
|
+
*/
|
|
829
|
+
from?: number | null;
|
|
830
|
+
/**
|
|
831
|
+
* End of the filtering interval. Specified by number of periods (with respect to given granularity). Value \'O\' is representing current time-interval (current day, week, ...). If null, then end of the range is unbounded.
|
|
832
|
+
* @type {number}
|
|
833
|
+
* @memberof BoundedFilter
|
|
834
|
+
*/
|
|
835
|
+
to?: number | null;
|
|
836
|
+
}
|
|
837
|
+
export declare const BoundedFilterGranularityEnum: {
|
|
838
|
+
readonly MINUTE: "MINUTE";
|
|
839
|
+
readonly HOUR: "HOUR";
|
|
840
|
+
readonly DAY: "DAY";
|
|
841
|
+
readonly WEEK: "WEEK";
|
|
842
|
+
readonly MONTH: "MONTH";
|
|
843
|
+
readonly QUARTER: "QUARTER";
|
|
844
|
+
readonly YEAR: "YEAR";
|
|
845
|
+
readonly MINUTE_OF_HOUR: "MINUTE_OF_HOUR";
|
|
846
|
+
readonly HOUR_OF_DAY: "HOUR_OF_DAY";
|
|
847
|
+
readonly DAY_OF_WEEK: "DAY_OF_WEEK";
|
|
848
|
+
readonly DAY_OF_MONTH: "DAY_OF_MONTH";
|
|
849
|
+
readonly DAY_OF_YEAR: "DAY_OF_YEAR";
|
|
850
|
+
readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
|
|
851
|
+
readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
|
|
852
|
+
readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
|
|
853
|
+
};
|
|
854
|
+
export type BoundedFilterGranularityEnum = typeof BoundedFilterGranularityEnum[keyof typeof BoundedFilterGranularityEnum];
|
|
806
855
|
/**
|
|
807
856
|
* List of chat history interactions.
|
|
808
857
|
* @export
|
|
@@ -2797,7 +2846,7 @@ export declare const RankingFilterRankingFilterOperatorEnum: {
|
|
|
2797
2846
|
};
|
|
2798
2847
|
export type RankingFilterRankingFilterOperatorEnum = typeof RankingFilterRankingFilterOperatorEnum[keyof typeof RankingFilterRankingFilterOperatorEnum];
|
|
2799
2848
|
/**
|
|
2800
|
-
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
|
|
2849
|
+
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension. The \'from\' and \'to\' properties mark the boundaries of the interval. If \'from\' is omitted, all values earlier than \'to\' are included. If \'to\' is omitted, all values later than \'from\' are included. It is not allowed to omit both.
|
|
2801
2850
|
* @export
|
|
2802
2851
|
* @interface RelativeDateFilter
|
|
2803
2852
|
*/
|
|
@@ -2845,6 +2894,12 @@ export interface RelativeDateFilterRelativeDateFilter {
|
|
|
2845
2894
|
* @memberof RelativeDateFilterRelativeDateFilter
|
|
2846
2895
|
*/
|
|
2847
2896
|
applyOnResult?: boolean;
|
|
2897
|
+
/**
|
|
2898
|
+
*
|
|
2899
|
+
* @type {BoundedFilter}
|
|
2900
|
+
* @memberof RelativeDateFilterRelativeDateFilter
|
|
2901
|
+
*/
|
|
2902
|
+
boundedFilter?: BoundedFilter;
|
|
2848
2903
|
/**
|
|
2849
2904
|
*
|
|
2850
2905
|
* @type {AfmObjectIdentifierDataset}
|
|
@@ -2870,6 +2925,38 @@ export declare const RelativeDateFilterRelativeDateFilterGranularityEnum: {
|
|
|
2870
2925
|
readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
|
|
2871
2926
|
};
|
|
2872
2927
|
export type RelativeDateFilterRelativeDateFilterGranularityEnum = typeof RelativeDateFilterRelativeDateFilterGranularityEnum[keyof typeof RelativeDateFilterRelativeDateFilterGranularityEnum];
|
|
2928
|
+
/**
|
|
2929
|
+
*
|
|
2930
|
+
* @export
|
|
2931
|
+
* @interface ResolvedLlmEndpoint
|
|
2932
|
+
*/
|
|
2933
|
+
export interface ResolvedLlmEndpoint {
|
|
2934
|
+
/**
|
|
2935
|
+
* Endpoint Id
|
|
2936
|
+
* @type {string}
|
|
2937
|
+
* @memberof ResolvedLlmEndpoint
|
|
2938
|
+
*/
|
|
2939
|
+
id: string;
|
|
2940
|
+
/**
|
|
2941
|
+
* Endpoint Title
|
|
2942
|
+
* @type {string}
|
|
2943
|
+
* @memberof ResolvedLlmEndpoint
|
|
2944
|
+
*/
|
|
2945
|
+
title: string;
|
|
2946
|
+
}
|
|
2947
|
+
/**
|
|
2948
|
+
*
|
|
2949
|
+
* @export
|
|
2950
|
+
* @interface ResolvedLlmEndpoints
|
|
2951
|
+
*/
|
|
2952
|
+
export interface ResolvedLlmEndpoints {
|
|
2953
|
+
/**
|
|
2954
|
+
*
|
|
2955
|
+
* @type {Array<ResolvedLlmEndpoint>}
|
|
2956
|
+
* @memberof ResolvedLlmEndpoints
|
|
2957
|
+
*/
|
|
2958
|
+
data: Array<ResolvedLlmEndpoint>;
|
|
2959
|
+
}
|
|
2873
2960
|
/**
|
|
2874
2961
|
* Object identifier.
|
|
2875
2962
|
* @export
|
|
@@ -3569,6 +3656,62 @@ export interface ValidateByItem {
|
|
|
3569
3656
|
*/
|
|
3570
3657
|
type: string;
|
|
3571
3658
|
}
|
|
3659
|
+
/**
|
|
3660
|
+
*
|
|
3661
|
+
* @export
|
|
3662
|
+
* @interface ValidateLLMEndpointRequest
|
|
3663
|
+
*/
|
|
3664
|
+
export interface ValidateLLMEndpointRequest {
|
|
3665
|
+
/**
|
|
3666
|
+
* Provider for the LLM endpoint validation
|
|
3667
|
+
* @type {string}
|
|
3668
|
+
* @memberof ValidateLLMEndpointRequest
|
|
3669
|
+
*/
|
|
3670
|
+
provider: string;
|
|
3671
|
+
/**
|
|
3672
|
+
* Base URL for the LLM endpoint validation
|
|
3673
|
+
* @type {string}
|
|
3674
|
+
* @memberof ValidateLLMEndpointRequest
|
|
3675
|
+
*/
|
|
3676
|
+
baseUrl?: string;
|
|
3677
|
+
/**
|
|
3678
|
+
* Token for the LLM endpoint validation
|
|
3679
|
+
* @type {string}
|
|
3680
|
+
* @memberof ValidateLLMEndpointRequest
|
|
3681
|
+
*/
|
|
3682
|
+
token: string;
|
|
3683
|
+
/**
|
|
3684
|
+
* Organization name for the LLM endpoint validation
|
|
3685
|
+
* @type {string}
|
|
3686
|
+
* @memberof ValidateLLMEndpointRequest
|
|
3687
|
+
*/
|
|
3688
|
+
llmOrganization?: string;
|
|
3689
|
+
/**
|
|
3690
|
+
* LLM model for the LLM endpoint validation
|
|
3691
|
+
* @type {string}
|
|
3692
|
+
* @memberof ValidateLLMEndpointRequest
|
|
3693
|
+
*/
|
|
3694
|
+
llmModel?: string;
|
|
3695
|
+
}
|
|
3696
|
+
/**
|
|
3697
|
+
*
|
|
3698
|
+
* @export
|
|
3699
|
+
* @interface ValidateLLMEndpointResponse
|
|
3700
|
+
*/
|
|
3701
|
+
export interface ValidateLLMEndpointResponse {
|
|
3702
|
+
/**
|
|
3703
|
+
* Whether the LLM endpoint validation was successful
|
|
3704
|
+
* @type {boolean}
|
|
3705
|
+
* @memberof ValidateLLMEndpointResponse
|
|
3706
|
+
*/
|
|
3707
|
+
success: boolean;
|
|
3708
|
+
/**
|
|
3709
|
+
* Additional message about the LLM endpoint validation
|
|
3710
|
+
* @type {string}
|
|
3711
|
+
* @memberof ValidateLLMEndpointResponse
|
|
3712
|
+
*/
|
|
3713
|
+
message: string;
|
|
3714
|
+
}
|
|
3572
3715
|
/**
|
|
3573
3716
|
* ActionsApi - axios parameter creator
|
|
3574
3717
|
* @export
|
|
@@ -3717,11 +3860,11 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3717
3860
|
* @summary AFM explain resource.
|
|
3718
3861
|
* @param {string} workspaceId Workspace identifier
|
|
3719
3862
|
* @param {AfmExecution} afmExecution
|
|
3720
|
-
* @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
|
|
3863
|
+
* @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
|
|
3721
3864
|
* @param {*} [options] Override http request option.
|
|
3722
3865
|
* @throws {RequiredError}
|
|
3723
3866
|
*/
|
|
3724
|
-
explainAFM: (workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS", options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3867
|
+
explainAFM: (workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS" | "COMPRESSED_SQL", options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3725
3868
|
/**
|
|
3726
3869
|
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
3727
3870
|
* @summary (BETA) Smart functions - Forecast
|
|
@@ -3765,6 +3908,14 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3765
3908
|
* @throws {RequiredError}
|
|
3766
3909
|
*/
|
|
3767
3910
|
keyDriverAnalysisResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3911
|
+
/**
|
|
3912
|
+
* Returns a list of available LLM Endpoints
|
|
3913
|
+
* @summary Get Active LLM Endpoints for this workspace
|
|
3914
|
+
* @param {string} workspaceId Workspace identifier
|
|
3915
|
+
* @param {*} [options] Override http request option.
|
|
3916
|
+
* @throws {RequiredError}
|
|
3917
|
+
*/
|
|
3918
|
+
resolveLlmEndpoints: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3768
3919
|
/**
|
|
3769
3920
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
3770
3921
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -3787,6 +3938,14 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3787
3938
|
* @throws {RequiredError}
|
|
3788
3939
|
*/
|
|
3789
3940
|
retrieveResult: (workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3941
|
+
/**
|
|
3942
|
+
* Validates LLM endpointw with provided parameters.
|
|
3943
|
+
* @summary Validate LLM Endpoint
|
|
3944
|
+
* @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
|
|
3945
|
+
* @param {*} [options] Override http request option.
|
|
3946
|
+
* @throws {RequiredError}
|
|
3947
|
+
*/
|
|
3948
|
+
validateLLMEndpoint: (validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3790
3949
|
};
|
|
3791
3950
|
/**
|
|
3792
3951
|
* ActionsApi - functional programming interface
|
|
@@ -3936,11 +4095,11 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
3936
4095
|
* @summary AFM explain resource.
|
|
3937
4096
|
* @param {string} workspaceId Workspace identifier
|
|
3938
4097
|
* @param {AfmExecution} afmExecution
|
|
3939
|
-
* @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
|
|
4098
|
+
* @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
|
|
3940
4099
|
* @param {*} [options] Override http request option.
|
|
3941
4100
|
* @throws {RequiredError}
|
|
3942
4101
|
*/
|
|
3943
|
-
explainAFM(workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
4102
|
+
explainAFM(workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS" | "COMPRESSED_SQL", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
3944
4103
|
/**
|
|
3945
4104
|
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
3946
4105
|
* @summary (BETA) Smart functions - Forecast
|
|
@@ -3984,6 +4143,14 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
3984
4143
|
* @throws {RequiredError}
|
|
3985
4144
|
*/
|
|
3986
4145
|
keyDriverAnalysisResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeyDriversResult>>;
|
|
4146
|
+
/**
|
|
4147
|
+
* Returns a list of available LLM Endpoints
|
|
4148
|
+
* @summary Get Active LLM Endpoints for this workspace
|
|
4149
|
+
* @param {string} workspaceId Workspace identifier
|
|
4150
|
+
* @param {*} [options] Override http request option.
|
|
4151
|
+
* @throws {RequiredError}
|
|
4152
|
+
*/
|
|
4153
|
+
resolveLlmEndpoints(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResolvedLlmEndpoints>>;
|
|
3987
4154
|
/**
|
|
3988
4155
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
3989
4156
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -4006,6 +4173,14 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
4006
4173
|
* @throws {RequiredError}
|
|
4007
4174
|
*/
|
|
4008
4175
|
retrieveResult(workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecutionResult>>;
|
|
4176
|
+
/**
|
|
4177
|
+
* Validates LLM endpointw with provided parameters.
|
|
4178
|
+
* @summary Validate LLM Endpoint
|
|
4179
|
+
* @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
|
|
4180
|
+
* @param {*} [options] Override http request option.
|
|
4181
|
+
* @throws {RequiredError}
|
|
4182
|
+
*/
|
|
4183
|
+
validateLLMEndpoint(validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateLLMEndpointResponse>>;
|
|
4009
4184
|
};
|
|
4010
4185
|
/**
|
|
4011
4186
|
* ActionsApi - factory interface
|
|
@@ -4164,6 +4339,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
4164
4339
|
* @throws {RequiredError}
|
|
4165
4340
|
*/
|
|
4166
4341
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
4342
|
+
/**
|
|
4343
|
+
* Returns a list of available LLM Endpoints
|
|
4344
|
+
* @summary Get Active LLM Endpoints for this workspace
|
|
4345
|
+
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
4346
|
+
* @param {*} [options] Override http request option.
|
|
4347
|
+
* @throws {RequiredError}
|
|
4348
|
+
*/
|
|
4349
|
+
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
4167
4350
|
/**
|
|
4168
4351
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
4169
4352
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -4180,6 +4363,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
4180
4363
|
* @throws {RequiredError}
|
|
4181
4364
|
*/
|
|
4182
4365
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
4366
|
+
/**
|
|
4367
|
+
* Validates LLM endpointw with provided parameters.
|
|
4368
|
+
* @summary Validate LLM Endpoint
|
|
4369
|
+
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
4370
|
+
* @param {*} [options] Override http request option.
|
|
4371
|
+
* @throws {RequiredError}
|
|
4372
|
+
*/
|
|
4373
|
+
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
4183
4374
|
};
|
|
4184
4375
|
/**
|
|
4185
4376
|
* ActionsApi - interface
|
|
@@ -4358,6 +4549,15 @@ export interface ActionsApiInterface {
|
|
|
4358
4549
|
* @memberof ActionsApiInterface
|
|
4359
4550
|
*/
|
|
4360
4551
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
4552
|
+
/**
|
|
4553
|
+
* Returns a list of available LLM Endpoints
|
|
4554
|
+
* @summary Get Active LLM Endpoints for this workspace
|
|
4555
|
+
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
4556
|
+
* @param {*} [options] Override http request option.
|
|
4557
|
+
* @throws {RequiredError}
|
|
4558
|
+
* @memberof ActionsApiInterface
|
|
4559
|
+
*/
|
|
4560
|
+
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
4361
4561
|
/**
|
|
4362
4562
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
4363
4563
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -4376,6 +4576,15 @@ export interface ActionsApiInterface {
|
|
|
4376
4576
|
* @memberof ActionsApiInterface
|
|
4377
4577
|
*/
|
|
4378
4578
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
4579
|
+
/**
|
|
4580
|
+
* Validates LLM endpointw with provided parameters.
|
|
4581
|
+
* @summary Validate LLM Endpoint
|
|
4582
|
+
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
4583
|
+
* @param {*} [options] Override http request option.
|
|
4584
|
+
* @throws {RequiredError}
|
|
4585
|
+
* @memberof ActionsApiInterface
|
|
4586
|
+
*/
|
|
4587
|
+
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
4379
4588
|
}
|
|
4380
4589
|
/**
|
|
4381
4590
|
* Request parameters for aiChat operation in ActionsApi.
|
|
@@ -4735,10 +4944,10 @@ export interface ActionsApiExplainAFMRequest {
|
|
|
4735
4944
|
readonly afmExecution: AfmExecution;
|
|
4736
4945
|
/**
|
|
4737
4946
|
* Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
|
|
4738
|
-
* @type {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'}
|
|
4947
|
+
* @type {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'}
|
|
4739
4948
|
* @memberof ActionsApiExplainAFM
|
|
4740
4949
|
*/
|
|
4741
|
-
readonly explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS";
|
|
4950
|
+
readonly explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS" | "COMPRESSED_SQL";
|
|
4742
4951
|
}
|
|
4743
4952
|
/**
|
|
4744
4953
|
* Request parameters for forecast operation in ActionsApi.
|
|
@@ -4858,6 +5067,19 @@ export interface ActionsApiKeyDriverAnalysisResultRequest {
|
|
|
4858
5067
|
*/
|
|
4859
5068
|
readonly limit?: number;
|
|
4860
5069
|
}
|
|
5070
|
+
/**
|
|
5071
|
+
* Request parameters for resolveLlmEndpoints operation in ActionsApi.
|
|
5072
|
+
* @export
|
|
5073
|
+
* @interface ActionsApiResolveLlmEndpointsRequest
|
|
5074
|
+
*/
|
|
5075
|
+
export interface ActionsApiResolveLlmEndpointsRequest {
|
|
5076
|
+
/**
|
|
5077
|
+
* Workspace identifier
|
|
5078
|
+
* @type {string}
|
|
5079
|
+
* @memberof ActionsApiResolveLlmEndpoints
|
|
5080
|
+
*/
|
|
5081
|
+
readonly workspaceId: string;
|
|
5082
|
+
}
|
|
4861
5083
|
/**
|
|
4862
5084
|
* Request parameters for retrieveExecutionMetadata operation in ActionsApi.
|
|
4863
5085
|
* @export
|
|
@@ -4920,6 +5142,19 @@ export interface ActionsApiRetrieveResultRequest {
|
|
|
4920
5142
|
*/
|
|
4921
5143
|
readonly xGDCCANCELTOKEN?: string;
|
|
4922
5144
|
}
|
|
5145
|
+
/**
|
|
5146
|
+
* Request parameters for validateLLMEndpoint operation in ActionsApi.
|
|
5147
|
+
* @export
|
|
5148
|
+
* @interface ActionsApiValidateLLMEndpointRequest
|
|
5149
|
+
*/
|
|
5150
|
+
export interface ActionsApiValidateLLMEndpointRequest {
|
|
5151
|
+
/**
|
|
5152
|
+
*
|
|
5153
|
+
* @type {ValidateLLMEndpointRequest}
|
|
5154
|
+
* @memberof ActionsApiValidateLLMEndpoint
|
|
5155
|
+
*/
|
|
5156
|
+
readonly validateLLMEndpointRequest: ValidateLLMEndpointRequest;
|
|
5157
|
+
}
|
|
4923
5158
|
/**
|
|
4924
5159
|
* ActionsApi - object-oriented interface
|
|
4925
5160
|
* @export
|
|
@@ -5098,6 +5333,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
5098
5333
|
* @memberof ActionsApi
|
|
5099
5334
|
*/
|
|
5100
5335
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<KeyDriversResult, any>>;
|
|
5336
|
+
/**
|
|
5337
|
+
* Returns a list of available LLM Endpoints
|
|
5338
|
+
* @summary Get Active LLM Endpoints for this workspace
|
|
5339
|
+
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
5340
|
+
* @param {*} [options] Override http request option.
|
|
5341
|
+
* @throws {RequiredError}
|
|
5342
|
+
* @memberof ActionsApi
|
|
5343
|
+
*/
|
|
5344
|
+
resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResolvedLlmEndpoints, any>>;
|
|
5101
5345
|
/**
|
|
5102
5346
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
5103
5347
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -5116,6 +5360,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
5116
5360
|
* @memberof ActionsApi
|
|
5117
5361
|
*/
|
|
5118
5362
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecutionResult, any>>;
|
|
5363
|
+
/**
|
|
5364
|
+
* Validates LLM endpointw with provided parameters.
|
|
5365
|
+
* @summary Validate LLM Endpoint
|
|
5366
|
+
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
5367
|
+
* @param {*} [options] Override http request option.
|
|
5368
|
+
* @throws {RequiredError}
|
|
5369
|
+
* @memberof ActionsApi
|
|
5370
|
+
*/
|
|
5371
|
+
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValidateLLMEndpointResponse, any>>;
|
|
5119
5372
|
}
|
|
5120
5373
|
/**
|
|
5121
5374
|
* ComputationApi - axios parameter creator
|
|
@@ -5168,11 +5421,11 @@ export declare const ComputationApiAxiosParamCreator: (configuration?: Configura
|
|
|
5168
5421
|
* @summary AFM explain resource.
|
|
5169
5422
|
* @param {string} workspaceId Workspace identifier
|
|
5170
5423
|
* @param {AfmExecution} afmExecution
|
|
5171
|
-
* @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
|
|
5424
|
+
* @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
|
|
5172
5425
|
* @param {*} [options] Override http request option.
|
|
5173
5426
|
* @throws {RequiredError}
|
|
5174
5427
|
*/
|
|
5175
|
-
explainAFM: (workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS", options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5428
|
+
explainAFM: (workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS" | "COMPRESSED_SQL", options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5176
5429
|
/**
|
|
5177
5430
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5178
5431
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -5268,11 +5521,11 @@ export declare const ComputationApiFp: (configuration?: Configuration) => {
|
|
|
5268
5521
|
* @summary AFM explain resource.
|
|
5269
5522
|
* @param {string} workspaceId Workspace identifier
|
|
5270
5523
|
* @param {AfmExecution} afmExecution
|
|
5271
|
-
* @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
|
|
5524
|
+
* @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
|
|
5272
5525
|
* @param {*} [options] Override http request option.
|
|
5273
5526
|
* @throws {RequiredError}
|
|
5274
5527
|
*/
|
|
5275
|
-
explainAFM(workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
5528
|
+
explainAFM(workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS" | "COMPRESSED_SQL", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
5276
5529
|
/**
|
|
5277
5530
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5278
5531
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -5609,10 +5862,10 @@ export interface ComputationApiExplainAFMRequest {
|
|
|
5609
5862
|
readonly afmExecution: AfmExecution;
|
|
5610
5863
|
/**
|
|
5611
5864
|
* Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request
|
|
5612
|
-
* @type {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'}
|
|
5865
|
+
* @type {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'}
|
|
5613
5866
|
* @memberof ComputationApiExplainAFM
|
|
5614
5867
|
*/
|
|
5615
|
-
readonly explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS";
|
|
5868
|
+
readonly explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS" | "COMPRESSED_SQL";
|
|
5616
5869
|
}
|
|
5617
5870
|
/**
|
|
5618
5871
|
* Request parameters for keyDriverAnalysis operation in ComputationApi.
|
|
@@ -5936,6 +6189,22 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
|
|
|
5936
6189
|
* @throws {RequiredError}
|
|
5937
6190
|
*/
|
|
5938
6191
|
forecastResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6192
|
+
/**
|
|
6193
|
+
* Returns a list of available LLM Endpoints
|
|
6194
|
+
* @summary Get Active LLM Endpoints for this workspace
|
|
6195
|
+
* @param {string} workspaceId Workspace identifier
|
|
6196
|
+
* @param {*} [options] Override http request option.
|
|
6197
|
+
* @throws {RequiredError}
|
|
6198
|
+
*/
|
|
6199
|
+
resolveLlmEndpoints: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6200
|
+
/**
|
|
6201
|
+
* Validates LLM endpointw with provided parameters.
|
|
6202
|
+
* @summary Validate LLM Endpoint
|
|
6203
|
+
* @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
|
|
6204
|
+
* @param {*} [options] Override http request option.
|
|
6205
|
+
* @throws {RequiredError}
|
|
6206
|
+
*/
|
|
6207
|
+
validateLLMEndpoint: (validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5939
6208
|
};
|
|
5940
6209
|
/**
|
|
5941
6210
|
* SmartFunctionsApi - functional programming interface
|
|
@@ -6052,6 +6321,22 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
|
|
|
6052
6321
|
* @throws {RequiredError}
|
|
6053
6322
|
*/
|
|
6054
6323
|
forecastResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForecastResult>>;
|
|
6324
|
+
/**
|
|
6325
|
+
* Returns a list of available LLM Endpoints
|
|
6326
|
+
* @summary Get Active LLM Endpoints for this workspace
|
|
6327
|
+
* @param {string} workspaceId Workspace identifier
|
|
6328
|
+
* @param {*} [options] Override http request option.
|
|
6329
|
+
* @throws {RequiredError}
|
|
6330
|
+
*/
|
|
6331
|
+
resolveLlmEndpoints(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResolvedLlmEndpoints>>;
|
|
6332
|
+
/**
|
|
6333
|
+
* Validates LLM endpointw with provided parameters.
|
|
6334
|
+
* @summary Validate LLM Endpoint
|
|
6335
|
+
* @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
|
|
6336
|
+
* @param {*} [options] Override http request option.
|
|
6337
|
+
* @throws {RequiredError}
|
|
6338
|
+
*/
|
|
6339
|
+
validateLLMEndpoint(validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateLLMEndpointResponse>>;
|
|
6055
6340
|
};
|
|
6056
6341
|
/**
|
|
6057
6342
|
* SmartFunctionsApi - factory interface
|
|
@@ -6146,6 +6431,22 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
|
|
|
6146
6431
|
* @throws {RequiredError}
|
|
6147
6432
|
*/
|
|
6148
6433
|
forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
|
|
6434
|
+
/**
|
|
6435
|
+
* Returns a list of available LLM Endpoints
|
|
6436
|
+
* @summary Get Active LLM Endpoints for this workspace
|
|
6437
|
+
* @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
6438
|
+
* @param {*} [options] Override http request option.
|
|
6439
|
+
* @throws {RequiredError}
|
|
6440
|
+
*/
|
|
6441
|
+
resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
6442
|
+
/**
|
|
6443
|
+
* Validates LLM endpointw with provided parameters.
|
|
6444
|
+
* @summary Validate LLM Endpoint
|
|
6445
|
+
* @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
6446
|
+
* @param {*} [options] Override http request option.
|
|
6447
|
+
* @throws {RequiredError}
|
|
6448
|
+
*/
|
|
6449
|
+
validateLLMEndpoint(requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
6149
6450
|
};
|
|
6150
6451
|
/**
|
|
6151
6452
|
* SmartFunctionsApi - interface
|
|
@@ -6252,6 +6553,24 @@ export interface SmartFunctionsApiInterface {
|
|
|
6252
6553
|
* @memberof SmartFunctionsApiInterface
|
|
6253
6554
|
*/
|
|
6254
6555
|
forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
|
|
6556
|
+
/**
|
|
6557
|
+
* Returns a list of available LLM Endpoints
|
|
6558
|
+
* @summary Get Active LLM Endpoints for this workspace
|
|
6559
|
+
* @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
6560
|
+
* @param {*} [options] Override http request option.
|
|
6561
|
+
* @throws {RequiredError}
|
|
6562
|
+
* @memberof SmartFunctionsApiInterface
|
|
6563
|
+
*/
|
|
6564
|
+
resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
6565
|
+
/**
|
|
6566
|
+
* Validates LLM endpointw with provided parameters.
|
|
6567
|
+
* @summary Validate LLM Endpoint
|
|
6568
|
+
* @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
6569
|
+
* @param {*} [options] Override http request option.
|
|
6570
|
+
* @throws {RequiredError}
|
|
6571
|
+
* @memberof SmartFunctionsApiInterface
|
|
6572
|
+
*/
|
|
6573
|
+
validateLLMEndpoint(requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
6255
6574
|
}
|
|
6256
6575
|
/**
|
|
6257
6576
|
* Request parameters for aiChat operation in SmartFunctionsApi.
|
|
@@ -6528,6 +6847,32 @@ export interface SmartFunctionsApiForecastResultRequest {
|
|
|
6528
6847
|
*/
|
|
6529
6848
|
readonly limit?: number;
|
|
6530
6849
|
}
|
|
6850
|
+
/**
|
|
6851
|
+
* Request parameters for resolveLlmEndpoints operation in SmartFunctionsApi.
|
|
6852
|
+
* @export
|
|
6853
|
+
* @interface SmartFunctionsApiResolveLlmEndpointsRequest
|
|
6854
|
+
*/
|
|
6855
|
+
export interface SmartFunctionsApiResolveLlmEndpointsRequest {
|
|
6856
|
+
/**
|
|
6857
|
+
* Workspace identifier
|
|
6858
|
+
* @type {string}
|
|
6859
|
+
* @memberof SmartFunctionsApiResolveLlmEndpoints
|
|
6860
|
+
*/
|
|
6861
|
+
readonly workspaceId: string;
|
|
6862
|
+
}
|
|
6863
|
+
/**
|
|
6864
|
+
* Request parameters for validateLLMEndpoint operation in SmartFunctionsApi.
|
|
6865
|
+
* @export
|
|
6866
|
+
* @interface SmartFunctionsApiValidateLLMEndpointRequest
|
|
6867
|
+
*/
|
|
6868
|
+
export interface SmartFunctionsApiValidateLLMEndpointRequest {
|
|
6869
|
+
/**
|
|
6870
|
+
*
|
|
6871
|
+
* @type {ValidateLLMEndpointRequest}
|
|
6872
|
+
* @memberof SmartFunctionsApiValidateLLMEndpoint
|
|
6873
|
+
*/
|
|
6874
|
+
readonly validateLLMEndpointRequest: ValidateLLMEndpointRequest;
|
|
6875
|
+
}
|
|
6531
6876
|
/**
|
|
6532
6877
|
* SmartFunctionsApi - object-oriented interface
|
|
6533
6878
|
* @export
|
|
@@ -6634,5 +6979,23 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
6634
6979
|
* @memberof SmartFunctionsApi
|
|
6635
6980
|
*/
|
|
6636
6981
|
forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ForecastResult, any>>;
|
|
6982
|
+
/**
|
|
6983
|
+
* Returns a list of available LLM Endpoints
|
|
6984
|
+
* @summary Get Active LLM Endpoints for this workspace
|
|
6985
|
+
* @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
6986
|
+
* @param {*} [options] Override http request option.
|
|
6987
|
+
* @throws {RequiredError}
|
|
6988
|
+
* @memberof SmartFunctionsApi
|
|
6989
|
+
*/
|
|
6990
|
+
resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResolvedLlmEndpoints, any>>;
|
|
6991
|
+
/**
|
|
6992
|
+
* Validates LLM endpointw with provided parameters.
|
|
6993
|
+
* @summary Validate LLM Endpoint
|
|
6994
|
+
* @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
6995
|
+
* @param {*} [options] Override http request option.
|
|
6996
|
+
* @throws {RequiredError}
|
|
6997
|
+
* @memberof SmartFunctionsApi
|
|
6998
|
+
*/
|
|
6999
|
+
validateLLMEndpoint(requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValidateLLMEndpointResponse, any>>;
|
|
6637
7000
|
}
|
|
6638
7001
|
//# sourceMappingURL=api.d.ts.map
|