@gooddata/api-client-tiger 11.2.0 → 11.3.0-alpha.1

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.
@@ -564,6 +564,10 @@ export interface ChatRequest {
564
564
  * Score, above which we return found objects. Below this score objects are not relevant.
565
565
  */
566
566
  relevantScoreThreshold?: number;
567
+ /**
568
+ * If true, includes hidden objects in search and visualization building. If false (default), excludes objects where isHidden=true.
569
+ */
570
+ includeHidden?: boolean;
567
571
  }
568
572
  export interface ChatResult {
569
573
  routing?: RouteResult;
@@ -697,7 +701,7 @@ export type CreatedVisualizationVisualizationTypeEnum = (typeof CreatedVisualiza
697
701
  /**
698
702
  * @type CreatedVisualizationFiltersInner
699
703
  */
700
- export type CreatedVisualizationFiltersInner = AttributeNegativeFilter | AttributePositiveFilter | DateAbsoluteFilter | DateRelativeFilter;
704
+ export type CreatedVisualizationFiltersInner = AttributeNegativeFilter | AttributePositiveFilter | DateAbsoluteFilter | DateRelativeFilter | RankingFilter;
701
705
  /**
702
706
  * Visualization definitions created by AI.
703
707
  */
@@ -1272,6 +1276,68 @@ export interface MeasureResultHeader {
1272
1276
  * Abstract filter definition type filtering by the value of the metric.
1273
1277
  */
1274
1278
  export type MeasureValueFilter = ComparisonMeasureValueFilter | RangeMeasureValueFilter;
1279
+ export interface MemoryItem {
1280
+ /**
1281
+ * Memory item ID
1282
+ */
1283
+ id: string;
1284
+ useCases?: MemoryItemUseCases;
1285
+ /**
1286
+ * Defines the application strategy.
1287
+ */
1288
+ strategy?: MemoryItemStrategyEnum;
1289
+ /**
1290
+ * Instruction that will be injected into the prompt.
1291
+ */
1292
+ instruction: string;
1293
+ /**
1294
+ * List of keywords used to match the memory item.
1295
+ */
1296
+ keywords: Array<string>;
1297
+ }
1298
+ export declare const MemoryItemStrategyEnum: {
1299
+ readonly MEMORY_ITEM_STRATEGY_ALLWAYS: "MEMORY_ITEM_STRATEGY_ALLWAYS";
1300
+ readonly MEMORY_ITEM_STRATEGY_NEVER: "MEMORY_ITEM_STRATEGY_NEVER";
1301
+ readonly MEMORY_ITEM_STRATEGY_AUTO: "MEMORY_ITEM_STRATEGY_AUTO";
1302
+ };
1303
+ export type MemoryItemStrategyEnum = (typeof MemoryItemStrategyEnum)[keyof typeof MemoryItemStrategyEnum];
1304
+ /**
1305
+ * Defines the prompts where the given instruction should be applied.
1306
+ */
1307
+ export interface MemoryItemUseCases {
1308
+ /**
1309
+ * Appy this memory item to the router prompt.
1310
+ */
1311
+ router: boolean;
1312
+ /**
1313
+ * Apply this memory item to the search keyword extraction prompt.
1314
+ */
1315
+ keywords: boolean;
1316
+ /**
1317
+ * Apply this memory item to the search prompt.
1318
+ */
1319
+ search: boolean;
1320
+ /**
1321
+ * Apply this memory item to the visualization prompt.
1322
+ */
1323
+ visualization: boolean;
1324
+ /**
1325
+ * Apply this memory item to the general answer prompt.
1326
+ */
1327
+ general: boolean;
1328
+ /**
1329
+ * Apply this memory item to the how-to prompt.
1330
+ */
1331
+ howto: boolean;
1332
+ /**
1333
+ * Apply this memory item to the normalize prompt.
1334
+ */
1335
+ normalize: boolean;
1336
+ /**
1337
+ * Apply this memory item to the metric selection prompt.
1338
+ */
1339
+ metric: boolean;
1340
+ }
1275
1341
  /**
1276
1342
  * List of metrics to be used in the new visualization
1277
1343
  */
@@ -2126,6 +2192,15 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
2126
2192
  * @throws {RequiredError}
2127
2193
  */
2128
2194
  computeValidObjects: (workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2195
+ /**
2196
+ * (EXPERIMENTAL) Creates a new memory item and returns it
2197
+ * @summary (EXPERIMENTAL) Create new memory item
2198
+ * @param {string} workspaceId Workspace identifier
2199
+ * @param {MemoryItem} memoryItem
2200
+ * @param {*} [options] Override http request option.
2201
+ * @throws {RequiredError}
2202
+ */
2203
+ createMemoryItem: (workspaceId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2129
2204
  /**
2130
2205
  * Returns a list of Users who created any object for this workspace
2131
2206
  * @summary Get Analytics Catalog CreatedBy
@@ -2166,6 +2241,15 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
2166
2241
  * @throws {RequiredError}
2167
2242
  */
2168
2243
  forecastResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2244
+ /**
2245
+ * (EXPERIMENTAL) Get memory item by id
2246
+ * @summary (EXPERIMENTAL) Get memory item
2247
+ * @param {string} workspaceId Workspace identifier
2248
+ * @param {string} memoryId
2249
+ * @param {*} [options] Override http request option.
2250
+ * @throws {RequiredError}
2251
+ */
2252
+ getMemoryItem: (workspaceId: string, memoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2169
2253
  /**
2170
2254
  * Returns metadata quality issues detected by the platform linter.
2171
2255
  * @summary Get Quality Issues
@@ -2195,6 +2279,23 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
2195
2279
  * @throws {RequiredError}
2196
2280
  */
2197
2281
  keyDriverAnalysisResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2282
+ /**
2283
+ * (EXPERIMENTAL) Returns a list of memory items
2284
+ * @summary (EXPERIMENTAL) List all memory items
2285
+ * @param {string} workspaceId Workspace identifier
2286
+ * @param {*} [options] Override http request option.
2287
+ * @throws {RequiredError}
2288
+ */
2289
+ listMemoryItems: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2290
+ /**
2291
+ * (EXPERIMENTAL) Removes memory item
2292
+ * @summary (EXPERIMENTAL) Remove memory item
2293
+ * @param {string} workspaceId Workspace identifier
2294
+ * @param {string} memoryId
2295
+ * @param {*} [options] Override http request option.
2296
+ * @throws {RequiredError}
2297
+ */
2298
+ removeMemoryItem: (workspaceId: string, memoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2198
2299
  /**
2199
2300
  * Returns a list of available LLM Endpoints
2200
2301
  * @summary Get Active LLM Endpoints for this workspace
@@ -2233,6 +2334,16 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
2233
2334
  * @throws {RequiredError}
2234
2335
  */
2235
2336
  tags: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2337
+ /**
2338
+ * (EXPERIMENTAL) Updates memory item and returns it
2339
+ * @summary (EXPERIMENTAL) Update memory item
2340
+ * @param {string} workspaceId Workspace identifier
2341
+ * @param {string} memoryId
2342
+ * @param {MemoryItem} memoryItem
2343
+ * @param {*} [options] Override http request option.
2344
+ * @throws {RequiredError}
2345
+ */
2346
+ updateMemoryItem: (workspaceId: string, memoryId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2236
2347
  /**
2237
2348
  * Validates LLM endpoint with provided parameters.
2238
2349
  * @summary Validate LLM Endpoint
@@ -2394,6 +2505,15 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
2394
2505
  * @throws {RequiredError}
2395
2506
  */
2396
2507
  computeValidObjects(workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmValidObjectsResponse>>;
2508
+ /**
2509
+ * (EXPERIMENTAL) Creates a new memory item and returns it
2510
+ * @summary (EXPERIMENTAL) Create new memory item
2511
+ * @param {string} workspaceId Workspace identifier
2512
+ * @param {MemoryItem} memoryItem
2513
+ * @param {*} [options] Override http request option.
2514
+ * @throws {RequiredError}
2515
+ */
2516
+ createMemoryItem(workspaceId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
2397
2517
  /**
2398
2518
  * Returns a list of Users who created any object for this workspace
2399
2519
  * @summary Get Analytics Catalog CreatedBy
@@ -2434,6 +2554,15 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
2434
2554
  * @throws {RequiredError}
2435
2555
  */
2436
2556
  forecastResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForecastResult>>;
2557
+ /**
2558
+ * (EXPERIMENTAL) Get memory item by id
2559
+ * @summary (EXPERIMENTAL) Get memory item
2560
+ * @param {string} workspaceId Workspace identifier
2561
+ * @param {string} memoryId
2562
+ * @param {*} [options] Override http request option.
2563
+ * @throws {RequiredError}
2564
+ */
2565
+ getMemoryItem(workspaceId: string, memoryId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
2437
2566
  /**
2438
2567
  * Returns metadata quality issues detected by the platform linter.
2439
2568
  * @summary Get Quality Issues
@@ -2463,6 +2592,23 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
2463
2592
  * @throws {RequiredError}
2464
2593
  */
2465
2594
  keyDriverAnalysisResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeyDriversResult>>;
2595
+ /**
2596
+ * (EXPERIMENTAL) Returns a list of memory items
2597
+ * @summary (EXPERIMENTAL) List all memory items
2598
+ * @param {string} workspaceId Workspace identifier
2599
+ * @param {*} [options] Override http request option.
2600
+ * @throws {RequiredError}
2601
+ */
2602
+ listMemoryItems(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MemoryItem>>>;
2603
+ /**
2604
+ * (EXPERIMENTAL) Removes memory item
2605
+ * @summary (EXPERIMENTAL) Remove memory item
2606
+ * @param {string} workspaceId Workspace identifier
2607
+ * @param {string} memoryId
2608
+ * @param {*} [options] Override http request option.
2609
+ * @throws {RequiredError}
2610
+ */
2611
+ removeMemoryItem(workspaceId: string, memoryId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2466
2612
  /**
2467
2613
  * Returns a list of available LLM Endpoints
2468
2614
  * @summary Get Active LLM Endpoints for this workspace
@@ -2501,6 +2647,16 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
2501
2647
  * @throws {RequiredError}
2502
2648
  */
2503
2649
  tags(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsCatalogTags>>;
2650
+ /**
2651
+ * (EXPERIMENTAL) Updates memory item and returns it
2652
+ * @summary (EXPERIMENTAL) Update memory item
2653
+ * @param {string} workspaceId Workspace identifier
2654
+ * @param {string} memoryId
2655
+ * @param {MemoryItem} memoryItem
2656
+ * @param {*} [options] Override http request option.
2657
+ * @throws {RequiredError}
2658
+ */
2659
+ updateMemoryItem(workspaceId: string, memoryId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
2504
2660
  /**
2505
2661
  * Validates LLM endpoint with provided parameters.
2506
2662
  * @summary Validate LLM Endpoint
@@ -2636,6 +2792,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
2636
2792
  * @throws {RequiredError}
2637
2793
  */
2638
2794
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
2795
+ /**
2796
+ * (EXPERIMENTAL) Creates a new memory item and returns it
2797
+ * @summary (EXPERIMENTAL) Create new memory item
2798
+ * @param {ActionsApiCreateMemoryItemRequest} requestParameters Request parameters.
2799
+ * @param {*} [options] Override http request option.
2800
+ * @throws {RequiredError}
2801
+ */
2802
+ createMemoryItem(requestParameters: ActionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
2639
2803
  /**
2640
2804
  * Returns a list of Users who created any object for this workspace
2641
2805
  * @summary Get Analytics Catalog CreatedBy
@@ -2668,6 +2832,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
2668
2832
  * @throws {RequiredError}
2669
2833
  */
2670
2834
  forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
2835
+ /**
2836
+ * (EXPERIMENTAL) Get memory item by id
2837
+ * @summary (EXPERIMENTAL) Get memory item
2838
+ * @param {ActionsApiGetMemoryItemRequest} requestParameters Request parameters.
2839
+ * @param {*} [options] Override http request option.
2840
+ * @throws {RequiredError}
2841
+ */
2842
+ getMemoryItem(requestParameters: ActionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
2671
2843
  /**
2672
2844
  * Returns metadata quality issues detected by the platform linter.
2673
2845
  * @summary Get Quality Issues
@@ -2692,6 +2864,22 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
2692
2864
  * @throws {RequiredError}
2693
2865
  */
2694
2866
  keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
2867
+ /**
2868
+ * (EXPERIMENTAL) Returns a list of memory items
2869
+ * @summary (EXPERIMENTAL) List all memory items
2870
+ * @param {ActionsApiListMemoryItemsRequest} requestParameters Request parameters.
2871
+ * @param {*} [options] Override http request option.
2872
+ * @throws {RequiredError}
2873
+ */
2874
+ listMemoryItems(requestParameters: ActionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<MemoryItem>>;
2875
+ /**
2876
+ * (EXPERIMENTAL) Removes memory item
2877
+ * @summary (EXPERIMENTAL) Remove memory item
2878
+ * @param {ActionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
2879
+ * @param {*} [options] Override http request option.
2880
+ * @throws {RequiredError}
2881
+ */
2882
+ removeMemoryItem(requestParameters: ActionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
2695
2883
  /**
2696
2884
  * Returns a list of available LLM Endpoints
2697
2885
  * @summary Get Active LLM Endpoints for this workspace
@@ -2724,6 +2912,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
2724
2912
  * @throws {RequiredError}
2725
2913
  */
2726
2914
  tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
2915
+ /**
2916
+ * (EXPERIMENTAL) Updates memory item and returns it
2917
+ * @summary (EXPERIMENTAL) Update memory item
2918
+ * @param {ActionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
2919
+ * @param {*} [options] Override http request option.
2920
+ * @throws {RequiredError}
2921
+ */
2922
+ updateMemoryItem(requestParameters: ActionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
2727
2923
  /**
2728
2924
  * Validates LLM endpoint with provided parameters.
2729
2925
  * @summary Validate LLM Endpoint
@@ -2873,6 +3069,15 @@ export interface ActionsApiInterface {
2873
3069
  * @memberof ActionsApiInterface
2874
3070
  */
2875
3071
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
3072
+ /**
3073
+ * (EXPERIMENTAL) Creates a new memory item and returns it
3074
+ * @summary (EXPERIMENTAL) Create new memory item
3075
+ * @param {ActionsApiCreateMemoryItemRequest} requestParameters Request parameters.
3076
+ * @param {*} [options] Override http request option.
3077
+ * @throws {RequiredError}
3078
+ * @memberof ActionsApiInterface
3079
+ */
3080
+ createMemoryItem(requestParameters: ActionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
2876
3081
  /**
2877
3082
  * Returns a list of Users who created any object for this workspace
2878
3083
  * @summary Get Analytics Catalog CreatedBy
@@ -2909,6 +3114,15 @@ export interface ActionsApiInterface {
2909
3114
  * @memberof ActionsApiInterface
2910
3115
  */
2911
3116
  forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
3117
+ /**
3118
+ * (EXPERIMENTAL) Get memory item by id
3119
+ * @summary (EXPERIMENTAL) Get memory item
3120
+ * @param {ActionsApiGetMemoryItemRequest} requestParameters Request parameters.
3121
+ * @param {*} [options] Override http request option.
3122
+ * @throws {RequiredError}
3123
+ * @memberof ActionsApiInterface
3124
+ */
3125
+ getMemoryItem(requestParameters: ActionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
2912
3126
  /**
2913
3127
  * Returns metadata quality issues detected by the platform linter.
2914
3128
  * @summary Get Quality Issues
@@ -2936,6 +3150,24 @@ export interface ActionsApiInterface {
2936
3150
  * @memberof ActionsApiInterface
2937
3151
  */
2938
3152
  keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
3153
+ /**
3154
+ * (EXPERIMENTAL) Returns a list of memory items
3155
+ * @summary (EXPERIMENTAL) List all memory items
3156
+ * @param {ActionsApiListMemoryItemsRequest} requestParameters Request parameters.
3157
+ * @param {*} [options] Override http request option.
3158
+ * @throws {RequiredError}
3159
+ * @memberof ActionsApiInterface
3160
+ */
3161
+ listMemoryItems(requestParameters: ActionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<MemoryItem>>;
3162
+ /**
3163
+ * (EXPERIMENTAL) Removes memory item
3164
+ * @summary (EXPERIMENTAL) Remove memory item
3165
+ * @param {ActionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
3166
+ * @param {*} [options] Override http request option.
3167
+ * @throws {RequiredError}
3168
+ * @memberof ActionsApiInterface
3169
+ */
3170
+ removeMemoryItem(requestParameters: ActionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
2939
3171
  /**
2940
3172
  * Returns a list of available LLM Endpoints
2941
3173
  * @summary Get Active LLM Endpoints for this workspace
@@ -2972,6 +3204,15 @@ export interface ActionsApiInterface {
2972
3204
  * @memberof ActionsApiInterface
2973
3205
  */
2974
3206
  tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
3207
+ /**
3208
+ * (EXPERIMENTAL) Updates memory item and returns it
3209
+ * @summary (EXPERIMENTAL) Update memory item
3210
+ * @param {ActionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
3211
+ * @param {*} [options] Override http request option.
3212
+ * @throws {RequiredError}
3213
+ * @memberof ActionsApiInterface
3214
+ */
3215
+ updateMemoryItem(requestParameters: ActionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
2975
3216
  /**
2976
3217
  * Validates LLM endpoint with provided parameters.
2977
3218
  * @summary Validate LLM Endpoint
@@ -3329,6 +3570,25 @@ export interface ActionsApiComputeValidObjectsRequest {
3329
3570
  */
3330
3571
  readonly afmValidObjectsQuery: AfmValidObjectsQuery;
3331
3572
  }
3573
+ /**
3574
+ * Request parameters for createMemoryItem operation in ActionsApi.
3575
+ * @export
3576
+ * @interface ActionsApiCreateMemoryItemRequest
3577
+ */
3578
+ export interface ActionsApiCreateMemoryItemRequest {
3579
+ /**
3580
+ * Workspace identifier
3581
+ * @type {string}
3582
+ * @memberof ActionsApiCreateMemoryItem
3583
+ */
3584
+ readonly workspaceId: string;
3585
+ /**
3586
+ *
3587
+ * @type {MemoryItem}
3588
+ * @memberof ActionsApiCreateMemoryItem
3589
+ */
3590
+ readonly memoryItem: MemoryItem;
3591
+ }
3332
3592
  /**
3333
3593
  * Request parameters for createdBy operation in ActionsApi.
3334
3594
  * @export
@@ -3429,6 +3689,25 @@ export interface ActionsApiForecastResultRequest {
3429
3689
  */
3430
3690
  readonly limit?: number;
3431
3691
  }
3692
+ /**
3693
+ * Request parameters for getMemoryItem operation in ActionsApi.
3694
+ * @export
3695
+ * @interface ActionsApiGetMemoryItemRequest
3696
+ */
3697
+ export interface ActionsApiGetMemoryItemRequest {
3698
+ /**
3699
+ * Workspace identifier
3700
+ * @type {string}
3701
+ * @memberof ActionsApiGetMemoryItem
3702
+ */
3703
+ readonly workspaceId: string;
3704
+ /**
3705
+ *
3706
+ * @type {string}
3707
+ * @memberof ActionsApiGetMemoryItem
3708
+ */
3709
+ readonly memoryId: string;
3710
+ }
3432
3711
  /**
3433
3712
  * Request parameters for getQualityIssues operation in ActionsApi.
3434
3713
  * @export
@@ -3498,6 +3777,38 @@ export interface ActionsApiKeyDriverAnalysisResultRequest {
3498
3777
  */
3499
3778
  readonly limit?: number;
3500
3779
  }
3780
+ /**
3781
+ * Request parameters for listMemoryItems operation in ActionsApi.
3782
+ * @export
3783
+ * @interface ActionsApiListMemoryItemsRequest
3784
+ */
3785
+ export interface ActionsApiListMemoryItemsRequest {
3786
+ /**
3787
+ * Workspace identifier
3788
+ * @type {string}
3789
+ * @memberof ActionsApiListMemoryItems
3790
+ */
3791
+ readonly workspaceId: string;
3792
+ }
3793
+ /**
3794
+ * Request parameters for removeMemoryItem operation in ActionsApi.
3795
+ * @export
3796
+ * @interface ActionsApiRemoveMemoryItemRequest
3797
+ */
3798
+ export interface ActionsApiRemoveMemoryItemRequest {
3799
+ /**
3800
+ * Workspace identifier
3801
+ * @type {string}
3802
+ * @memberof ActionsApiRemoveMemoryItem
3803
+ */
3804
+ readonly workspaceId: string;
3805
+ /**
3806
+ *
3807
+ * @type {string}
3808
+ * @memberof ActionsApiRemoveMemoryItem
3809
+ */
3810
+ readonly memoryId: string;
3811
+ }
3501
3812
  /**
3502
3813
  * Request parameters for resolveLlmEndpoints operation in ActionsApi.
3503
3814
  * @export
@@ -3586,6 +3897,31 @@ export interface ActionsApiTagsRequest {
3586
3897
  */
3587
3898
  readonly workspaceId: string;
3588
3899
  }
3900
+ /**
3901
+ * Request parameters for updateMemoryItem operation in ActionsApi.
3902
+ * @export
3903
+ * @interface ActionsApiUpdateMemoryItemRequest
3904
+ */
3905
+ export interface ActionsApiUpdateMemoryItemRequest {
3906
+ /**
3907
+ * Workspace identifier
3908
+ * @type {string}
3909
+ * @memberof ActionsApiUpdateMemoryItem
3910
+ */
3911
+ readonly workspaceId: string;
3912
+ /**
3913
+ *
3914
+ * @type {string}
3915
+ * @memberof ActionsApiUpdateMemoryItem
3916
+ */
3917
+ readonly memoryId: string;
3918
+ /**
3919
+ *
3920
+ * @type {MemoryItem}
3921
+ * @memberof ActionsApiUpdateMemoryItem
3922
+ */
3923
+ readonly memoryItem: MemoryItem;
3924
+ }
3589
3925
  /**
3590
3926
  * Request parameters for validateLLMEndpoint operation in ActionsApi.
3591
3927
  * @export
@@ -3751,6 +4087,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
3751
4087
  * @memberof ActionsApi
3752
4088
  */
3753
4089
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AfmValidObjectsResponse, any, {}>>;
4090
+ /**
4091
+ * (EXPERIMENTAL) Creates a new memory item and returns it
4092
+ * @summary (EXPERIMENTAL) Create new memory item
4093
+ * @param {ActionsApiCreateMemoryItemRequest} requestParameters Request parameters.
4094
+ * @param {*} [options] Override http request option.
4095
+ * @throws {RequiredError}
4096
+ * @memberof ActionsApi
4097
+ */
4098
+ createMemoryItem(requestParameters: ActionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem, any, {}>>;
3754
4099
  /**
3755
4100
  * Returns a list of Users who created any object for this workspace
3756
4101
  * @summary Get Analytics Catalog CreatedBy
@@ -3787,6 +4132,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
3787
4132
  * @memberof ActionsApi
3788
4133
  */
3789
4134
  forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ForecastResult, any, {}>>;
4135
+ /**
4136
+ * (EXPERIMENTAL) Get memory item by id
4137
+ * @summary (EXPERIMENTAL) Get memory item
4138
+ * @param {ActionsApiGetMemoryItemRequest} requestParameters Request parameters.
4139
+ * @param {*} [options] Override http request option.
4140
+ * @throws {RequiredError}
4141
+ * @memberof ActionsApi
4142
+ */
4143
+ getMemoryItem(requestParameters: ActionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem, any, {}>>;
3790
4144
  /**
3791
4145
  * Returns metadata quality issues detected by the platform linter.
3792
4146
  * @summary Get Quality Issues
@@ -3814,6 +4168,24 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
3814
4168
  * @memberof ActionsApi
3815
4169
  */
3816
4170
  keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<KeyDriversResult, any, {}>>;
4171
+ /**
4172
+ * (EXPERIMENTAL) Returns a list of memory items
4173
+ * @summary (EXPERIMENTAL) List all memory items
4174
+ * @param {ActionsApiListMemoryItemsRequest} requestParameters Request parameters.
4175
+ * @param {*} [options] Override http request option.
4176
+ * @throws {RequiredError}
4177
+ * @memberof ActionsApi
4178
+ */
4179
+ listMemoryItems(requestParameters: ActionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem[], any, {}>>;
4180
+ /**
4181
+ * (EXPERIMENTAL) Removes memory item
4182
+ * @summary (EXPERIMENTAL) Remove memory item
4183
+ * @param {ActionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
4184
+ * @param {*} [options] Override http request option.
4185
+ * @throws {RequiredError}
4186
+ * @memberof ActionsApi
4187
+ */
4188
+ removeMemoryItem(requestParameters: ActionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
3817
4189
  /**
3818
4190
  * Returns a list of available LLM Endpoints
3819
4191
  * @summary Get Active LLM Endpoints for this workspace
@@ -3850,6 +4222,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
3850
4222
  * @memberof ActionsApi
3851
4223
  */
3852
4224
  tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsCatalogTags, any, {}>>;
4225
+ /**
4226
+ * (EXPERIMENTAL) Updates memory item and returns it
4227
+ * @summary (EXPERIMENTAL) Update memory item
4228
+ * @param {ActionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
4229
+ * @param {*} [options] Override http request option.
4230
+ * @throws {RequiredError}
4231
+ * @memberof ActionsApi
4232
+ */
4233
+ updateMemoryItem(requestParameters: ActionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem, any, {}>>;
3853
4234
  /**
3854
4235
  * Validates LLM endpoint with provided parameters.
3855
4236
  * @summary Validate LLM Endpoint
@@ -4666,6 +5047,15 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
4666
5047
  * @throws {RequiredError}
4667
5048
  */
4668
5049
  clusteringResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5050
+ /**
5051
+ * (EXPERIMENTAL) Creates a new memory item and returns it
5052
+ * @summary (EXPERIMENTAL) Create new memory item
5053
+ * @param {string} workspaceId Workspace identifier
5054
+ * @param {MemoryItem} memoryItem
5055
+ * @param {*} [options] Override http request option.
5056
+ * @throws {RequiredError}
5057
+ */
5058
+ createMemoryItem: (workspaceId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4669
5059
  /**
4670
5060
  * Returns a list of Users who created any object for this workspace
4671
5061
  * @summary Get Analytics Catalog CreatedBy
@@ -4696,6 +5086,15 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
4696
5086
  * @throws {RequiredError}
4697
5087
  */
4698
5088
  forecastResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5089
+ /**
5090
+ * (EXPERIMENTAL) Get memory item by id
5091
+ * @summary (EXPERIMENTAL) Get memory item
5092
+ * @param {string} workspaceId Workspace identifier
5093
+ * @param {string} memoryId
5094
+ * @param {*} [options] Override http request option.
5095
+ * @throws {RequiredError}
5096
+ */
5097
+ getMemoryItem: (workspaceId: string, memoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4699
5098
  /**
4700
5099
  * Returns metadata quality issues detected by the platform linter.
4701
5100
  * @summary Get Quality Issues
@@ -4704,6 +5103,23 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
4704
5103
  * @throws {RequiredError}
4705
5104
  */
4706
5105
  getQualityIssues: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5106
+ /**
5107
+ * (EXPERIMENTAL) Returns a list of memory items
5108
+ * @summary (EXPERIMENTAL) List all memory items
5109
+ * @param {string} workspaceId Workspace identifier
5110
+ * @param {*} [options] Override http request option.
5111
+ * @throws {RequiredError}
5112
+ */
5113
+ listMemoryItems: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5114
+ /**
5115
+ * (EXPERIMENTAL) Removes memory item
5116
+ * @summary (EXPERIMENTAL) Remove memory item
5117
+ * @param {string} workspaceId Workspace identifier
5118
+ * @param {string} memoryId
5119
+ * @param {*} [options] Override http request option.
5120
+ * @throws {RequiredError}
5121
+ */
5122
+ removeMemoryItem: (workspaceId: string, memoryId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4707
5123
  /**
4708
5124
  * Returns a list of available LLM Endpoints
4709
5125
  * @summary Get Active LLM Endpoints for this workspace
@@ -4720,6 +5136,16 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
4720
5136
  * @throws {RequiredError}
4721
5137
  */
4722
5138
  tags: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5139
+ /**
5140
+ * (EXPERIMENTAL) Updates memory item and returns it
5141
+ * @summary (EXPERIMENTAL) Update memory item
5142
+ * @param {string} workspaceId Workspace identifier
5143
+ * @param {string} memoryId
5144
+ * @param {MemoryItem} memoryItem
5145
+ * @param {*} [options] Override http request option.
5146
+ * @throws {RequiredError}
5147
+ */
5148
+ updateMemoryItem: (workspaceId: string, memoryId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig) => Promise<RequestArgs>;
4723
5149
  /**
4724
5150
  * Validates LLM endpoint with provided parameters.
4725
5151
  * @summary Validate LLM Endpoint
@@ -4831,6 +5257,15 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
4831
5257
  * @throws {RequiredError}
4832
5258
  */
4833
5259
  clusteringResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusteringResult>>;
5260
+ /**
5261
+ * (EXPERIMENTAL) Creates a new memory item and returns it
5262
+ * @summary (EXPERIMENTAL) Create new memory item
5263
+ * @param {string} workspaceId Workspace identifier
5264
+ * @param {MemoryItem} memoryItem
5265
+ * @param {*} [options] Override http request option.
5266
+ * @throws {RequiredError}
5267
+ */
5268
+ createMemoryItem(workspaceId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
4834
5269
  /**
4835
5270
  * Returns a list of Users who created any object for this workspace
4836
5271
  * @summary Get Analytics Catalog CreatedBy
@@ -4861,6 +5296,15 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
4861
5296
  * @throws {RequiredError}
4862
5297
  */
4863
5298
  forecastResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForecastResult>>;
5299
+ /**
5300
+ * (EXPERIMENTAL) Get memory item by id
5301
+ * @summary (EXPERIMENTAL) Get memory item
5302
+ * @param {string} workspaceId Workspace identifier
5303
+ * @param {string} memoryId
5304
+ * @param {*} [options] Override http request option.
5305
+ * @throws {RequiredError}
5306
+ */
5307
+ getMemoryItem(workspaceId: string, memoryId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
4864
5308
  /**
4865
5309
  * Returns metadata quality issues detected by the platform linter.
4866
5310
  * @summary Get Quality Issues
@@ -4869,6 +5313,23 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
4869
5313
  * @throws {RequiredError}
4870
5314
  */
4871
5315
  getQualityIssues(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetQualityIssuesResponse>>;
5316
+ /**
5317
+ * (EXPERIMENTAL) Returns a list of memory items
5318
+ * @summary (EXPERIMENTAL) List all memory items
5319
+ * @param {string} workspaceId Workspace identifier
5320
+ * @param {*} [options] Override http request option.
5321
+ * @throws {RequiredError}
5322
+ */
5323
+ listMemoryItems(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MemoryItem>>>;
5324
+ /**
5325
+ * (EXPERIMENTAL) Removes memory item
5326
+ * @summary (EXPERIMENTAL) Remove memory item
5327
+ * @param {string} workspaceId Workspace identifier
5328
+ * @param {string} memoryId
5329
+ * @param {*} [options] Override http request option.
5330
+ * @throws {RequiredError}
5331
+ */
5332
+ removeMemoryItem(workspaceId: string, memoryId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4872
5333
  /**
4873
5334
  * Returns a list of available LLM Endpoints
4874
5335
  * @summary Get Active LLM Endpoints for this workspace
@@ -4885,6 +5346,16 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
4885
5346
  * @throws {RequiredError}
4886
5347
  */
4887
5348
  tags(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsCatalogTags>>;
5349
+ /**
5350
+ * (EXPERIMENTAL) Updates memory item and returns it
5351
+ * @summary (EXPERIMENTAL) Update memory item
5352
+ * @param {string} workspaceId Workspace identifier
5353
+ * @param {string} memoryId
5354
+ * @param {MemoryItem} memoryItem
5355
+ * @param {*} [options] Override http request option.
5356
+ * @throws {RequiredError}
5357
+ */
5358
+ updateMemoryItem(workspaceId: string, memoryId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
4888
5359
  /**
4889
5360
  * Validates LLM endpoint with provided parameters.
4890
5361
  * @summary Validate LLM Endpoint
@@ -4980,6 +5451,14 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
4980
5451
  * @throws {RequiredError}
4981
5452
  */
4982
5453
  clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): AxiosPromise<ClusteringResult>;
5454
+ /**
5455
+ * (EXPERIMENTAL) Creates a new memory item and returns it
5456
+ * @summary (EXPERIMENTAL) Create new memory item
5457
+ * @param {SmartFunctionsApiCreateMemoryItemRequest} requestParameters Request parameters.
5458
+ * @param {*} [options] Override http request option.
5459
+ * @throws {RequiredError}
5460
+ */
5461
+ createMemoryItem(requestParameters: SmartFunctionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
4983
5462
  /**
4984
5463
  * Returns a list of Users who created any object for this workspace
4985
5464
  * @summary Get Analytics Catalog CreatedBy
@@ -5004,6 +5483,14 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
5004
5483
  * @throws {RequiredError}
5005
5484
  */
5006
5485
  forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
5486
+ /**
5487
+ * (EXPERIMENTAL) Get memory item by id
5488
+ * @summary (EXPERIMENTAL) Get memory item
5489
+ * @param {SmartFunctionsApiGetMemoryItemRequest} requestParameters Request parameters.
5490
+ * @param {*} [options] Override http request option.
5491
+ * @throws {RequiredError}
5492
+ */
5493
+ getMemoryItem(requestParameters: SmartFunctionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
5007
5494
  /**
5008
5495
  * Returns metadata quality issues detected by the platform linter.
5009
5496
  * @summary Get Quality Issues
@@ -5012,6 +5499,22 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
5012
5499
  * @throws {RequiredError}
5013
5500
  */
5014
5501
  getQualityIssues(requestParameters: SmartFunctionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): AxiosPromise<GetQualityIssuesResponse>;
5502
+ /**
5503
+ * (EXPERIMENTAL) Returns a list of memory items
5504
+ * @summary (EXPERIMENTAL) List all memory items
5505
+ * @param {SmartFunctionsApiListMemoryItemsRequest} requestParameters Request parameters.
5506
+ * @param {*} [options] Override http request option.
5507
+ * @throws {RequiredError}
5508
+ */
5509
+ listMemoryItems(requestParameters: SmartFunctionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<MemoryItem>>;
5510
+ /**
5511
+ * (EXPERIMENTAL) Removes memory item
5512
+ * @summary (EXPERIMENTAL) Remove memory item
5513
+ * @param {SmartFunctionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
5514
+ * @param {*} [options] Override http request option.
5515
+ * @throws {RequiredError}
5516
+ */
5517
+ removeMemoryItem(requestParameters: SmartFunctionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5015
5518
  /**
5016
5519
  * Returns a list of available LLM Endpoints
5017
5520
  * @summary Get Active LLM Endpoints for this workspace
@@ -5028,6 +5531,14 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
5028
5531
  * @throws {RequiredError}
5029
5532
  */
5030
5533
  tags(requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
5534
+ /**
5535
+ * (EXPERIMENTAL) Updates memory item and returns it
5536
+ * @summary (EXPERIMENTAL) Update memory item
5537
+ * @param {SmartFunctionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
5538
+ * @param {*} [options] Override http request option.
5539
+ * @throws {RequiredError}
5540
+ */
5541
+ updateMemoryItem(requestParameters: SmartFunctionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
5031
5542
  /**
5032
5543
  * Validates LLM endpoint with provided parameters.
5033
5544
  * @summary Validate LLM Endpoint
@@ -5132,6 +5643,15 @@ export interface SmartFunctionsApiInterface {
5132
5643
  * @memberof SmartFunctionsApiInterface
5133
5644
  */
5134
5645
  clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): AxiosPromise<ClusteringResult>;
5646
+ /**
5647
+ * (EXPERIMENTAL) Creates a new memory item and returns it
5648
+ * @summary (EXPERIMENTAL) Create new memory item
5649
+ * @param {SmartFunctionsApiCreateMemoryItemRequest} requestParameters Request parameters.
5650
+ * @param {*} [options] Override http request option.
5651
+ * @throws {RequiredError}
5652
+ * @memberof SmartFunctionsApiInterface
5653
+ */
5654
+ createMemoryItem(requestParameters: SmartFunctionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
5135
5655
  /**
5136
5656
  * Returns a list of Users who created any object for this workspace
5137
5657
  * @summary Get Analytics Catalog CreatedBy
@@ -5160,14 +5680,14 @@ export interface SmartFunctionsApiInterface {
5160
5680
  */
5161
5681
  forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
5162
5682
  /**
5163
- * Returns a list of Users who created any object for this workspace
5164
- * @summary Get Analytics Catalog CreatedBy
5165
- * @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
5683
+ * (EXPERIMENTAL) Get memory item by id
5684
+ * @summary (EXPERIMENTAL) Get memory item
5685
+ * @param {SmartFunctionsApiGetMemoryItemRequest} requestParameters Request parameters.
5166
5686
  * @param {*} [options] Override http request option.
5167
5687
  * @throws {RequiredError}
5168
5688
  * @memberof SmartFunctionsApiInterface
5169
5689
  */
5170
- createdBy(requestParameters: SmartFunctionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
5690
+ getMemoryItem(requestParameters: SmartFunctionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
5171
5691
  /**
5172
5692
  * Returns metadata quality issues detected by the platform linter.
5173
5693
  * @summary Get Quality Issues
@@ -5177,6 +5697,24 @@ export interface SmartFunctionsApiInterface {
5177
5697
  * @memberof SmartFunctionsApiInterface
5178
5698
  */
5179
5699
  getQualityIssues(requestParameters: SmartFunctionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): AxiosPromise<GetQualityIssuesResponse>;
5700
+ /**
5701
+ * (EXPERIMENTAL) Returns a list of memory items
5702
+ * @summary (EXPERIMENTAL) List all memory items
5703
+ * @param {SmartFunctionsApiListMemoryItemsRequest} requestParameters Request parameters.
5704
+ * @param {*} [options] Override http request option.
5705
+ * @throws {RequiredError}
5706
+ * @memberof SmartFunctionsApiInterface
5707
+ */
5708
+ listMemoryItems(requestParameters: SmartFunctionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<MemoryItem>>;
5709
+ /**
5710
+ * (EXPERIMENTAL) Removes memory item
5711
+ * @summary (EXPERIMENTAL) Remove memory item
5712
+ * @param {SmartFunctionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
5713
+ * @param {*} [options] Override http request option.
5714
+ * @throws {RequiredError}
5715
+ * @memberof SmartFunctionsApiInterface
5716
+ */
5717
+ removeMemoryItem(requestParameters: SmartFunctionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5180
5718
  /**
5181
5719
  * Returns a list of available LLM Endpoints
5182
5720
  * @summary Get Active LLM Endpoints for this workspace
@@ -5195,6 +5733,15 @@ export interface SmartFunctionsApiInterface {
5195
5733
  * @memberof SmartFunctionsApiInterface
5196
5734
  */
5197
5735
  tags(requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
5736
+ /**
5737
+ * (EXPERIMENTAL) Updates memory item and returns it
5738
+ * @summary (EXPERIMENTAL) Update memory item
5739
+ * @param {SmartFunctionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
5740
+ * @param {*} [options] Override http request option.
5741
+ * @throws {RequiredError}
5742
+ * @memberof SmartFunctionsApiInterface
5743
+ */
5744
+ updateMemoryItem(requestParameters: SmartFunctionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
5198
5745
  /**
5199
5746
  * Validates LLM endpoint with provided parameters.
5200
5747
  * @summary Validate LLM Endpoint
@@ -5427,6 +5974,25 @@ export interface SmartFunctionsApiClusteringResultRequest {
5427
5974
  */
5428
5975
  readonly limit?: number;
5429
5976
  }
5977
+ /**
5978
+ * Request parameters for createMemoryItem operation in SmartFunctionsApi.
5979
+ * @export
5980
+ * @interface SmartFunctionsApiCreateMemoryItemRequest
5981
+ */
5982
+ export interface SmartFunctionsApiCreateMemoryItemRequest {
5983
+ /**
5984
+ * Workspace identifier
5985
+ * @type {string}
5986
+ * @memberof SmartFunctionsApiCreateMemoryItem
5987
+ */
5988
+ readonly workspaceId: string;
5989
+ /**
5990
+ *
5991
+ * @type {MemoryItem}
5992
+ * @memberof SmartFunctionsApiCreateMemoryItem
5993
+ */
5994
+ readonly memoryItem: MemoryItem;
5995
+ }
5430
5996
  /**
5431
5997
  * Request parameters for createdBy operation in SmartFunctionsApi.
5432
5998
  * @export
@@ -5502,6 +6068,25 @@ export interface SmartFunctionsApiForecastResultRequest {
5502
6068
  */
5503
6069
  readonly limit?: number;
5504
6070
  }
6071
+ /**
6072
+ * Request parameters for getMemoryItem operation in SmartFunctionsApi.
6073
+ * @export
6074
+ * @interface SmartFunctionsApiGetMemoryItemRequest
6075
+ */
6076
+ export interface SmartFunctionsApiGetMemoryItemRequest {
6077
+ /**
6078
+ * Workspace identifier
6079
+ * @type {string}
6080
+ * @memberof SmartFunctionsApiGetMemoryItem
6081
+ */
6082
+ readonly workspaceId: string;
6083
+ /**
6084
+ *
6085
+ * @type {string}
6086
+ * @memberof SmartFunctionsApiGetMemoryItem
6087
+ */
6088
+ readonly memoryId: string;
6089
+ }
5505
6090
  /**
5506
6091
  * Request parameters for getQualityIssues operation in SmartFunctionsApi.
5507
6092
  * @export
@@ -5515,6 +6100,38 @@ export interface SmartFunctionsApiGetQualityIssuesRequest {
5515
6100
  */
5516
6101
  readonly workspaceId: string;
5517
6102
  }
6103
+ /**
6104
+ * Request parameters for listMemoryItems operation in SmartFunctionsApi.
6105
+ * @export
6106
+ * @interface SmartFunctionsApiListMemoryItemsRequest
6107
+ */
6108
+ export interface SmartFunctionsApiListMemoryItemsRequest {
6109
+ /**
6110
+ * Workspace identifier
6111
+ * @type {string}
6112
+ * @memberof SmartFunctionsApiListMemoryItems
6113
+ */
6114
+ readonly workspaceId: string;
6115
+ }
6116
+ /**
6117
+ * Request parameters for removeMemoryItem operation in SmartFunctionsApi.
6118
+ * @export
6119
+ * @interface SmartFunctionsApiRemoveMemoryItemRequest
6120
+ */
6121
+ export interface SmartFunctionsApiRemoveMemoryItemRequest {
6122
+ /**
6123
+ * Workspace identifier
6124
+ * @type {string}
6125
+ * @memberof SmartFunctionsApiRemoveMemoryItem
6126
+ */
6127
+ readonly workspaceId: string;
6128
+ /**
6129
+ *
6130
+ * @type {string}
6131
+ * @memberof SmartFunctionsApiRemoveMemoryItem
6132
+ */
6133
+ readonly memoryId: string;
6134
+ }
5518
6135
  /**
5519
6136
  * Request parameters for resolveLlmEndpoints operation in SmartFunctionsApi.
5520
6137
  * @export
@@ -5541,6 +6158,31 @@ export interface SmartFunctionsApiTagsRequest {
5541
6158
  */
5542
6159
  readonly workspaceId: string;
5543
6160
  }
6161
+ /**
6162
+ * Request parameters for updateMemoryItem operation in SmartFunctionsApi.
6163
+ * @export
6164
+ * @interface SmartFunctionsApiUpdateMemoryItemRequest
6165
+ */
6166
+ export interface SmartFunctionsApiUpdateMemoryItemRequest {
6167
+ /**
6168
+ * Workspace identifier
6169
+ * @type {string}
6170
+ * @memberof SmartFunctionsApiUpdateMemoryItem
6171
+ */
6172
+ readonly workspaceId: string;
6173
+ /**
6174
+ *
6175
+ * @type {string}
6176
+ * @memberof SmartFunctionsApiUpdateMemoryItem
6177
+ */
6178
+ readonly memoryId: string;
6179
+ /**
6180
+ *
6181
+ * @type {MemoryItem}
6182
+ * @memberof SmartFunctionsApiUpdateMemoryItem
6183
+ */
6184
+ readonly memoryItem: MemoryItem;
6185
+ }
5544
6186
  /**
5545
6187
  * Request parameters for validateLLMEndpoint operation in SmartFunctionsApi.
5546
6188
  * @export
@@ -5661,6 +6303,15 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
5661
6303
  * @memberof SmartFunctionsApi
5662
6304
  */
5663
6305
  clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusteringResult, any, {}>>;
6306
+ /**
6307
+ * (EXPERIMENTAL) Creates a new memory item and returns it
6308
+ * @summary (EXPERIMENTAL) Create new memory item
6309
+ * @param {SmartFunctionsApiCreateMemoryItemRequest} requestParameters Request parameters.
6310
+ * @param {*} [options] Override http request option.
6311
+ * @throws {RequiredError}
6312
+ * @memberof SmartFunctionsApi
6313
+ */
6314
+ createMemoryItem(requestParameters: SmartFunctionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem, any, {}>>;
5664
6315
  /**
5665
6316
  * Returns a list of Users who created any object for this workspace
5666
6317
  * @summary Get Analytics Catalog CreatedBy
@@ -5688,6 +6339,15 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
5688
6339
  * @memberof SmartFunctionsApi
5689
6340
  */
5690
6341
  forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ForecastResult, any, {}>>;
6342
+ /**
6343
+ * (EXPERIMENTAL) Get memory item by id
6344
+ * @summary (EXPERIMENTAL) Get memory item
6345
+ * @param {SmartFunctionsApiGetMemoryItemRequest} requestParameters Request parameters.
6346
+ * @param {*} [options] Override http request option.
6347
+ * @throws {RequiredError}
6348
+ * @memberof SmartFunctionsApi
6349
+ */
6350
+ getMemoryItem(requestParameters: SmartFunctionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem, any, {}>>;
5691
6351
  /**
5692
6352
  * Returns metadata quality issues detected by the platform linter.
5693
6353
  * @summary Get Quality Issues
@@ -5697,6 +6357,24 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
5697
6357
  * @memberof SmartFunctionsApi
5698
6358
  */
5699
6359
  getQualityIssues(requestParameters: SmartFunctionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetQualityIssuesResponse, any, {}>>;
6360
+ /**
6361
+ * (EXPERIMENTAL) Returns a list of memory items
6362
+ * @summary (EXPERIMENTAL) List all memory items
6363
+ * @param {SmartFunctionsApiListMemoryItemsRequest} requestParameters Request parameters.
6364
+ * @param {*} [options] Override http request option.
6365
+ * @throws {RequiredError}
6366
+ * @memberof SmartFunctionsApi
6367
+ */
6368
+ listMemoryItems(requestParameters: SmartFunctionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem[], any, {}>>;
6369
+ /**
6370
+ * (EXPERIMENTAL) Removes memory item
6371
+ * @summary (EXPERIMENTAL) Remove memory item
6372
+ * @param {SmartFunctionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
6373
+ * @param {*} [options] Override http request option.
6374
+ * @throws {RequiredError}
6375
+ * @memberof SmartFunctionsApi
6376
+ */
6377
+ removeMemoryItem(requestParameters: SmartFunctionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
5700
6378
  /**
5701
6379
  * Returns a list of available LLM Endpoints
5702
6380
  * @summary Get Active LLM Endpoints for this workspace
@@ -5715,6 +6393,15 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
5715
6393
  * @memberof SmartFunctionsApi
5716
6394
  */
5717
6395
  tags(requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsCatalogTags, any, {}>>;
6396
+ /**
6397
+ * (EXPERIMENTAL) Updates memory item and returns it
6398
+ * @summary (EXPERIMENTAL) Update memory item
6399
+ * @param {SmartFunctionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
6400
+ * @param {*} [options] Override http request option.
6401
+ * @throws {RequiredError}
6402
+ * @memberof SmartFunctionsApi
6403
+ */
6404
+ updateMemoryItem(requestParameters: SmartFunctionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MemoryItem, any, {}>>;
5718
6405
  /**
5719
6406
  * Validates LLM endpoint with provided parameters.
5720
6407
  * @summary Validate LLM Endpoint