@gooddata/api-client-tiger 10.39.0-alpha.2 → 10.39.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +103 -1
- package/esm/genAI.d.ts +1 -1
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +163 -0
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +154 -2
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +67 -3
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
package/esm/__version.d.ts
CHANGED
package/esm/__version.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// (C) 2021 GoodData Corporation
|
|
2
2
|
// DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
|
|
3
|
-
export const LIB_VERSION = "10.39.0-alpha.
|
|
3
|
+
export const LIB_VERSION = "10.39.0-alpha.3";
|
|
4
4
|
export const LIB_NAME = "@gooddata/api-client-tiger";
|
|
5
5
|
//# sourceMappingURL=__version.js.map
|
|
@@ -2975,6 +2975,26 @@ export declare interface ActionsApiUnsubscribeWorkspaceAutomationsRequest {
|
|
|
2975
2975
|
readonly workspaceId: string;
|
|
2976
2976
|
}
|
|
2977
2977
|
|
|
2978
|
+
/**
|
|
2979
|
+
* Request parameters for validateLLMEndpointById operation in ActionsApi.
|
|
2980
|
+
* @export
|
|
2981
|
+
* @interface ActionsApiValidateLLMEndpointByIdRequest
|
|
2982
|
+
*/
|
|
2983
|
+
export declare interface ActionsApiValidateLLMEndpointByIdRequest {
|
|
2984
|
+
/**
|
|
2985
|
+
*
|
|
2986
|
+
* @type {string}
|
|
2987
|
+
* @memberof ActionsApiValidateLLMEndpointById
|
|
2988
|
+
*/
|
|
2989
|
+
readonly llmEndpointId: string;
|
|
2990
|
+
/**
|
|
2991
|
+
*
|
|
2992
|
+
* @type {ValidateLLMEndpointByIdRequest}
|
|
2993
|
+
* @memberof ActionsApiValidateLLMEndpointById
|
|
2994
|
+
*/
|
|
2995
|
+
readonly validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest;
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2978
2998
|
/**
|
|
2979
2999
|
* Request parameters for validateLLMEndpoint operation in ActionsApi.
|
|
2980
3000
|
* @export
|
|
@@ -4796,6 +4816,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
4796
4816
|
* @memberof ActionsApi
|
|
4797
4817
|
*/
|
|
4798
4818
|
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<ValidateLLMEndpointResponse, any>>;
|
|
4819
|
+
/**
|
|
4820
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
4821
|
+
* @summary Validate LLM Endpoint By Id
|
|
4822
|
+
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
4823
|
+
* @param {*} [options] Override http request option.
|
|
4824
|
+
* @throws {RequiredError}
|
|
4825
|
+
* @memberof ActionsApi
|
|
4826
|
+
*/
|
|
4827
|
+
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<ValidateLLMEndpointResponse, any>>;
|
|
4799
4828
|
}
|
|
4800
4829
|
|
|
4801
4830
|
/**
|
|
@@ -5032,6 +5061,15 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
5032
5061
|
* @throws {RequiredError}
|
|
5033
5062
|
*/
|
|
5034
5063
|
validateLLMEndpoint: (validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5064
|
+
/**
|
|
5065
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
5066
|
+
* @summary Validate LLM Endpoint By Id
|
|
5067
|
+
* @param {string} llmEndpointId
|
|
5068
|
+
* @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
|
|
5069
|
+
* @param {*} [options] Override http request option.
|
|
5070
|
+
* @throws {RequiredError}
|
|
5071
|
+
*/
|
|
5072
|
+
validateLLMEndpointById: (llmEndpointId: string, validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5035
5073
|
};
|
|
5036
5074
|
|
|
5037
5075
|
/**
|
|
@@ -5223,6 +5261,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
5223
5261
|
* @throws {RequiredError}
|
|
5224
5262
|
*/
|
|
5225
5263
|
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
5264
|
+
/**
|
|
5265
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
5266
|
+
* @summary Validate LLM Endpoint By Id
|
|
5267
|
+
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
5268
|
+
* @param {*} [options] Override http request option.
|
|
5269
|
+
* @throws {RequiredError}
|
|
5270
|
+
*/
|
|
5271
|
+
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
5226
5272
|
};
|
|
5227
5273
|
|
|
5228
5274
|
/**
|
|
@@ -5459,6 +5505,15 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
5459
5505
|
* @throws {RequiredError}
|
|
5460
5506
|
*/
|
|
5461
5507
|
validateLLMEndpoint(validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateLLMEndpointResponse>>;
|
|
5508
|
+
/**
|
|
5509
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
5510
|
+
* @summary Validate LLM Endpoint By Id
|
|
5511
|
+
* @param {string} llmEndpointId
|
|
5512
|
+
* @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
|
|
5513
|
+
* @param {*} [options] Override http request option.
|
|
5514
|
+
* @throws {RequiredError}
|
|
5515
|
+
*/
|
|
5516
|
+
validateLLMEndpointById(llmEndpointId: string, validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateLLMEndpointResponse>>;
|
|
5462
5517
|
};
|
|
5463
5518
|
|
|
5464
5519
|
/**
|
|
@@ -5674,6 +5729,15 @@ export declare interface AfmActionsApiInterface {
|
|
|
5674
5729
|
* @memberof ActionsApiInterface
|
|
5675
5730
|
*/
|
|
5676
5731
|
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
5732
|
+
/**
|
|
5733
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
5734
|
+
* @summary Validate LLM Endpoint By Id
|
|
5735
|
+
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
5736
|
+
* @param {*} [options] Override http request option.
|
|
5737
|
+
* @throws {RequiredError}
|
|
5738
|
+
* @memberof ActionsApiInterface
|
|
5739
|
+
*/
|
|
5740
|
+
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
5677
5741
|
}
|
|
5678
5742
|
|
|
5679
5743
|
/**
|
|
@@ -83717,7 +83781,7 @@ export declare const tigerExportClientFactory: (axios: AxiosInstance) => Actions
|
|
|
83717
83781
|
/**
|
|
83718
83782
|
* Tiger GenAI client factory
|
|
83719
83783
|
*/
|
|
83720
|
-
export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory">;
|
|
83784
|
+
export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById">;
|
|
83721
83785
|
|
|
83722
83786
|
export declare const tigerLabelElementsClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "computeLabelElementsPost">;
|
|
83723
83787
|
|
|
@@ -88300,6 +88364,44 @@ export declare interface ValidateByItem {
|
|
|
88300
88364
|
type: string;
|
|
88301
88365
|
}
|
|
88302
88366
|
|
|
88367
|
+
/**
|
|
88368
|
+
*
|
|
88369
|
+
* @export
|
|
88370
|
+
* @interface ValidateLLMEndpointByIdRequest
|
|
88371
|
+
*/
|
|
88372
|
+
export declare interface ValidateLLMEndpointByIdRequest {
|
|
88373
|
+
/**
|
|
88374
|
+
* Provider for the LLM endpoint validation
|
|
88375
|
+
* @type {string}
|
|
88376
|
+
* @memberof ValidateLLMEndpointByIdRequest
|
|
88377
|
+
*/
|
|
88378
|
+
provider?: string;
|
|
88379
|
+
/**
|
|
88380
|
+
* Base URL for the LLM endpoint validation
|
|
88381
|
+
* @type {string}
|
|
88382
|
+
* @memberof ValidateLLMEndpointByIdRequest
|
|
88383
|
+
*/
|
|
88384
|
+
baseUrl?: string;
|
|
88385
|
+
/**
|
|
88386
|
+
* Token for the LLM endpoint validation
|
|
88387
|
+
* @type {string}
|
|
88388
|
+
* @memberof ValidateLLMEndpointByIdRequest
|
|
88389
|
+
*/
|
|
88390
|
+
token?: string;
|
|
88391
|
+
/**
|
|
88392
|
+
* Organization name for the LLM endpoint validation
|
|
88393
|
+
* @type {string}
|
|
88394
|
+
* @memberof ValidateLLMEndpointByIdRequest
|
|
88395
|
+
*/
|
|
88396
|
+
llmOrganization?: string;
|
|
88397
|
+
/**
|
|
88398
|
+
* LLM model for the LLM endpoint validation
|
|
88399
|
+
* @type {string}
|
|
88400
|
+
* @memberof ValidateLLMEndpointByIdRequest
|
|
88401
|
+
*/
|
|
88402
|
+
llmModel?: string;
|
|
88403
|
+
}
|
|
88404
|
+
|
|
88303
88405
|
/**
|
|
88304
88406
|
*
|
|
88305
88407
|
* @export
|
package/esm/genAI.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ import { ActionsApiInterface } from "./generated/afm-rest-api/index.js";
|
|
|
3
3
|
/**
|
|
4
4
|
* Tiger GenAI client factory
|
|
5
5
|
*/
|
|
6
|
-
export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<ActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory">;
|
|
6
|
+
export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => Pick<ActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById">;
|
|
7
7
|
//# sourceMappingURL=genAI.d.ts.map
|
package/esm/genAI.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"genAI.d.ts","sourceRoot":"","sources":["../src/genAI.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AACtC,OAAO,EAAc,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AAEpF;;GAEG;AACH,eAAO,MAAM,uBAAuB,GAChC,OAAO,aAAa,KACrB,IAAI,
|
|
1
|
+
{"version":3,"file":"genAI.d.ts","sourceRoot":"","sources":["../src/genAI.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AACtC,OAAO,EAAc,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AAEpF;;GAEG;AACH,eAAO,MAAM,uBAAuB,GAChC,OAAO,aAAa,KACrB,IAAI,CACH,mBAAmB,EACjB,UAAU,GACV,QAAQ,GACR,cAAc,GACd,eAAe,GACf,qBAAqB,GACrB,yBAAyB,CACU,CAAC"}
|
package/esm/genAI.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"genAI.js","sourceRoot":"","sources":["../src/genAI.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAuB,MAAM,mCAAmC,CAAC;AAEpF;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CACnC,KAAoB,
|
|
1
|
+
{"version":3,"file":"genAI.js","sourceRoot":"","sources":["../src/genAI.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAuB,MAAM,mCAAmC,CAAC;AAEpF;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CACnC,KAAoB,EAStB,EAAE,CAAC,IAAI,UAAU,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC"}
|
|
@@ -3673,6 +3673,43 @@ export interface ValidateByItem {
|
|
|
3673
3673
|
*/
|
|
3674
3674
|
type: string;
|
|
3675
3675
|
}
|
|
3676
|
+
/**
|
|
3677
|
+
*
|
|
3678
|
+
* @export
|
|
3679
|
+
* @interface ValidateLLMEndpointByIdRequest
|
|
3680
|
+
*/
|
|
3681
|
+
export interface ValidateLLMEndpointByIdRequest {
|
|
3682
|
+
/**
|
|
3683
|
+
* Provider for the LLM endpoint validation
|
|
3684
|
+
* @type {string}
|
|
3685
|
+
* @memberof ValidateLLMEndpointByIdRequest
|
|
3686
|
+
*/
|
|
3687
|
+
provider?: string;
|
|
3688
|
+
/**
|
|
3689
|
+
* Base URL for the LLM endpoint validation
|
|
3690
|
+
* @type {string}
|
|
3691
|
+
* @memberof ValidateLLMEndpointByIdRequest
|
|
3692
|
+
*/
|
|
3693
|
+
baseUrl?: string;
|
|
3694
|
+
/**
|
|
3695
|
+
* Token for the LLM endpoint validation
|
|
3696
|
+
* @type {string}
|
|
3697
|
+
* @memberof ValidateLLMEndpointByIdRequest
|
|
3698
|
+
*/
|
|
3699
|
+
token?: string;
|
|
3700
|
+
/**
|
|
3701
|
+
* Organization name for the LLM endpoint validation
|
|
3702
|
+
* @type {string}
|
|
3703
|
+
* @memberof ValidateLLMEndpointByIdRequest
|
|
3704
|
+
*/
|
|
3705
|
+
llmOrganization?: string;
|
|
3706
|
+
/**
|
|
3707
|
+
* LLM model for the LLM endpoint validation
|
|
3708
|
+
* @type {string}
|
|
3709
|
+
* @memberof ValidateLLMEndpointByIdRequest
|
|
3710
|
+
*/
|
|
3711
|
+
llmModel?: string;
|
|
3712
|
+
}
|
|
3676
3713
|
/**
|
|
3677
3714
|
*
|
|
3678
3715
|
* @export
|
|
@@ -3963,6 +4000,15 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3963
4000
|
* @throws {RequiredError}
|
|
3964
4001
|
*/
|
|
3965
4002
|
validateLLMEndpoint: (validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4003
|
+
/**
|
|
4004
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
4005
|
+
* @summary Validate LLM Endpoint By Id
|
|
4006
|
+
* @param {string} llmEndpointId
|
|
4007
|
+
* @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
|
|
4008
|
+
* @param {*} [options] Override http request option.
|
|
4009
|
+
* @throws {RequiredError}
|
|
4010
|
+
*/
|
|
4011
|
+
validateLLMEndpointById: (llmEndpointId: string, validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3966
4012
|
};
|
|
3967
4013
|
/**
|
|
3968
4014
|
* ActionsApi - functional programming interface
|
|
@@ -4198,6 +4244,15 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
4198
4244
|
* @throws {RequiredError}
|
|
4199
4245
|
*/
|
|
4200
4246
|
validateLLMEndpoint(validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateLLMEndpointResponse>>;
|
|
4247
|
+
/**
|
|
4248
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
4249
|
+
* @summary Validate LLM Endpoint By Id
|
|
4250
|
+
* @param {string} llmEndpointId
|
|
4251
|
+
* @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
|
|
4252
|
+
* @param {*} [options] Override http request option.
|
|
4253
|
+
* @throws {RequiredError}
|
|
4254
|
+
*/
|
|
4255
|
+
validateLLMEndpointById(llmEndpointId: string, validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateLLMEndpointResponse>>;
|
|
4201
4256
|
};
|
|
4202
4257
|
/**
|
|
4203
4258
|
* ActionsApi - factory interface
|
|
@@ -4388,6 +4443,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
4388
4443
|
* @throws {RequiredError}
|
|
4389
4444
|
*/
|
|
4390
4445
|
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
4446
|
+
/**
|
|
4447
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
4448
|
+
* @summary Validate LLM Endpoint By Id
|
|
4449
|
+
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
4450
|
+
* @param {*} [options] Override http request option.
|
|
4451
|
+
* @throws {RequiredError}
|
|
4452
|
+
*/
|
|
4453
|
+
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
4391
4454
|
};
|
|
4392
4455
|
/**
|
|
4393
4456
|
* ActionsApi - interface
|
|
@@ -4602,6 +4665,15 @@ export interface ActionsApiInterface {
|
|
|
4602
4665
|
* @memberof ActionsApiInterface
|
|
4603
4666
|
*/
|
|
4604
4667
|
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
4668
|
+
/**
|
|
4669
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
4670
|
+
* @summary Validate LLM Endpoint By Id
|
|
4671
|
+
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
4672
|
+
* @param {*} [options] Override http request option.
|
|
4673
|
+
* @throws {RequiredError}
|
|
4674
|
+
* @memberof ActionsApiInterface
|
|
4675
|
+
*/
|
|
4676
|
+
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
4605
4677
|
}
|
|
4606
4678
|
/**
|
|
4607
4679
|
* Request parameters for aiChat operation in ActionsApi.
|
|
@@ -5172,6 +5244,25 @@ export interface ActionsApiValidateLLMEndpointRequest {
|
|
|
5172
5244
|
*/
|
|
5173
5245
|
readonly validateLLMEndpointRequest: ValidateLLMEndpointRequest;
|
|
5174
5246
|
}
|
|
5247
|
+
/**
|
|
5248
|
+
* Request parameters for validateLLMEndpointById operation in ActionsApi.
|
|
5249
|
+
* @export
|
|
5250
|
+
* @interface ActionsApiValidateLLMEndpointByIdRequest
|
|
5251
|
+
*/
|
|
5252
|
+
export interface ActionsApiValidateLLMEndpointByIdRequest {
|
|
5253
|
+
/**
|
|
5254
|
+
*
|
|
5255
|
+
* @type {string}
|
|
5256
|
+
* @memberof ActionsApiValidateLLMEndpointById
|
|
5257
|
+
*/
|
|
5258
|
+
readonly llmEndpointId: string;
|
|
5259
|
+
/**
|
|
5260
|
+
*
|
|
5261
|
+
* @type {ValidateLLMEndpointByIdRequest}
|
|
5262
|
+
* @memberof ActionsApiValidateLLMEndpointById
|
|
5263
|
+
*/
|
|
5264
|
+
readonly validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest;
|
|
5265
|
+
}
|
|
5175
5266
|
/**
|
|
5176
5267
|
* ActionsApi - object-oriented interface
|
|
5177
5268
|
* @export
|
|
@@ -5386,6 +5477,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
5386
5477
|
* @memberof ActionsApi
|
|
5387
5478
|
*/
|
|
5388
5479
|
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValidateLLMEndpointResponse, any>>;
|
|
5480
|
+
/**
|
|
5481
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
5482
|
+
* @summary Validate LLM Endpoint By Id
|
|
5483
|
+
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
5484
|
+
* @param {*} [options] Override http request option.
|
|
5485
|
+
* @throws {RequiredError}
|
|
5486
|
+
* @memberof ActionsApi
|
|
5487
|
+
*/
|
|
5488
|
+
validateLLMEndpointById(requestParameters: ActionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValidateLLMEndpointResponse, any>>;
|
|
5389
5489
|
}
|
|
5390
5490
|
/**
|
|
5391
5491
|
* ComputationApi - axios parameter creator
|
|
@@ -6222,6 +6322,15 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
|
|
|
6222
6322
|
* @throws {RequiredError}
|
|
6223
6323
|
*/
|
|
6224
6324
|
validateLLMEndpoint: (validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6325
|
+
/**
|
|
6326
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
6327
|
+
* @summary Validate LLM Endpoint By Id
|
|
6328
|
+
* @param {string} llmEndpointId
|
|
6329
|
+
* @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
|
|
6330
|
+
* @param {*} [options] Override http request option.
|
|
6331
|
+
* @throws {RequiredError}
|
|
6332
|
+
*/
|
|
6333
|
+
validateLLMEndpointById: (llmEndpointId: string, validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6225
6334
|
};
|
|
6226
6335
|
/**
|
|
6227
6336
|
* SmartFunctionsApi - functional programming interface
|
|
@@ -6354,6 +6463,15 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
|
|
|
6354
6463
|
* @throws {RequiredError}
|
|
6355
6464
|
*/
|
|
6356
6465
|
validateLLMEndpoint(validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateLLMEndpointResponse>>;
|
|
6466
|
+
/**
|
|
6467
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
6468
|
+
* @summary Validate LLM Endpoint By Id
|
|
6469
|
+
* @param {string} llmEndpointId
|
|
6470
|
+
* @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
|
|
6471
|
+
* @param {*} [options] Override http request option.
|
|
6472
|
+
* @throws {RequiredError}
|
|
6473
|
+
*/
|
|
6474
|
+
validateLLMEndpointById(llmEndpointId: string, validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateLLMEndpointResponse>>;
|
|
6357
6475
|
};
|
|
6358
6476
|
/**
|
|
6359
6477
|
* SmartFunctionsApi - factory interface
|
|
@@ -6464,6 +6582,14 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
|
|
|
6464
6582
|
* @throws {RequiredError}
|
|
6465
6583
|
*/
|
|
6466
6584
|
validateLLMEndpoint(requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
6585
|
+
/**
|
|
6586
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
6587
|
+
* @summary Validate LLM Endpoint By Id
|
|
6588
|
+
* @param {SmartFunctionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
6589
|
+
* @param {*} [options] Override http request option.
|
|
6590
|
+
* @throws {RequiredError}
|
|
6591
|
+
*/
|
|
6592
|
+
validateLLMEndpointById(requestParameters: SmartFunctionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
6467
6593
|
};
|
|
6468
6594
|
/**
|
|
6469
6595
|
* SmartFunctionsApi - interface
|
|
@@ -6588,6 +6714,15 @@ export interface SmartFunctionsApiInterface {
|
|
|
6588
6714
|
* @memberof SmartFunctionsApiInterface
|
|
6589
6715
|
*/
|
|
6590
6716
|
validateLLMEndpoint(requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
6717
|
+
/**
|
|
6718
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
6719
|
+
* @summary Validate LLM Endpoint By Id
|
|
6720
|
+
* @param {SmartFunctionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
6721
|
+
* @param {*} [options] Override http request option.
|
|
6722
|
+
* @throws {RequiredError}
|
|
6723
|
+
* @memberof SmartFunctionsApiInterface
|
|
6724
|
+
*/
|
|
6725
|
+
validateLLMEndpointById(requestParameters: SmartFunctionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
6591
6726
|
}
|
|
6592
6727
|
/**
|
|
6593
6728
|
* Request parameters for aiChat operation in SmartFunctionsApi.
|
|
@@ -6890,6 +7025,25 @@ export interface SmartFunctionsApiValidateLLMEndpointRequest {
|
|
|
6890
7025
|
*/
|
|
6891
7026
|
readonly validateLLMEndpointRequest: ValidateLLMEndpointRequest;
|
|
6892
7027
|
}
|
|
7028
|
+
/**
|
|
7029
|
+
* Request parameters for validateLLMEndpointById operation in SmartFunctionsApi.
|
|
7030
|
+
* @export
|
|
7031
|
+
* @interface SmartFunctionsApiValidateLLMEndpointByIdRequest
|
|
7032
|
+
*/
|
|
7033
|
+
export interface SmartFunctionsApiValidateLLMEndpointByIdRequest {
|
|
7034
|
+
/**
|
|
7035
|
+
*
|
|
7036
|
+
* @type {string}
|
|
7037
|
+
* @memberof SmartFunctionsApiValidateLLMEndpointById
|
|
7038
|
+
*/
|
|
7039
|
+
readonly llmEndpointId: string;
|
|
7040
|
+
/**
|
|
7041
|
+
*
|
|
7042
|
+
* @type {ValidateLLMEndpointByIdRequest}
|
|
7043
|
+
* @memberof SmartFunctionsApiValidateLLMEndpointById
|
|
7044
|
+
*/
|
|
7045
|
+
readonly validateLLMEndpointByIdRequest?: ValidateLLMEndpointByIdRequest;
|
|
7046
|
+
}
|
|
6893
7047
|
/**
|
|
6894
7048
|
* SmartFunctionsApi - object-oriented interface
|
|
6895
7049
|
* @export
|
|
@@ -7014,5 +7168,14 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
7014
7168
|
* @memberof SmartFunctionsApi
|
|
7015
7169
|
*/
|
|
7016
7170
|
validateLLMEndpoint(requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValidateLLMEndpointResponse, any>>;
|
|
7171
|
+
/**
|
|
7172
|
+
* Validates existing LLM endpoint with provided parameters and updates it if they are valid.
|
|
7173
|
+
* @summary Validate LLM Endpoint By Id
|
|
7174
|
+
* @param {SmartFunctionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
7175
|
+
* @param {*} [options] Override http request option.
|
|
7176
|
+
* @throws {RequiredError}
|
|
7177
|
+
* @memberof SmartFunctionsApi
|
|
7178
|
+
*/
|
|
7179
|
+
validateLLMEndpointById(requestParameters: SmartFunctionsApiValidateLLMEndpointByIdRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValidateLLMEndpointResponse, any>>;
|
|
7017
7180
|
}
|
|
7018
7181
|
//# sourceMappingURL=api.d.ts.map
|