@botpress/cognitive 0.2.1 → 0.3.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.
- package/.turbo/turbo-build.log +7 -7
- package/dist/index.cjs +61 -12
- package/dist/index.cjs.map +2 -2
- package/dist/index.d.ts +143 -42
- package/dist/index.mjs +61 -12
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1093,6 +1093,10 @@ interface UpsertFileRequestBody$1 {
|
|
|
1093
1093
|
*/
|
|
1094
1094
|
configuration: {
|
|
1095
1095
|
parsing?: {
|
|
1096
|
+
/**
|
|
1097
|
+
* The parsing mode to index the file. Using `agent` will use agentic document processing to parse the file and will incurr in AI Spend cost, while `standard` will use a faster but less accurate parser that will not incur in AI Spend cost.
|
|
1098
|
+
*/
|
|
1099
|
+
mode?: "agent" | "standard";
|
|
1096
1100
|
/**
|
|
1097
1101
|
* The minimum length a standalone paragraph should have. If a paragraph is shorter than this, it will be merged with the next immediate paragraph.
|
|
1098
1102
|
*/
|
|
@@ -1465,6 +1469,8 @@ interface ListConversationsRequestQuery {
|
|
|
1465
1469
|
participantIds?: string[];
|
|
1466
1470
|
integrationName?: string;
|
|
1467
1471
|
channel?: string;
|
|
1472
|
+
afterDate?: string;
|
|
1473
|
+
beforeDate?: string;
|
|
1468
1474
|
}
|
|
1469
1475
|
interface ListConversationsRequestParams {
|
|
1470
1476
|
}
|
|
@@ -5252,9 +5258,14 @@ interface ListPublicPluginsResponse {
|
|
|
5252
5258
|
*/
|
|
5253
5259
|
readmeUrl: string;
|
|
5254
5260
|
/**
|
|
5255
|
-
*
|
|
5261
|
+
* @deprecated
|
|
5262
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
5256
5263
|
*/
|
|
5257
5264
|
public: boolean;
|
|
5265
|
+
/**
|
|
5266
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
5267
|
+
*/
|
|
5268
|
+
visibility: "public" | "private" | "unlisted";
|
|
5258
5269
|
}[];
|
|
5259
5270
|
meta: {
|
|
5260
5271
|
/**
|
|
@@ -5469,9 +5480,14 @@ interface GetPublicPluginByIdResponse {
|
|
|
5469
5480
|
*/
|
|
5470
5481
|
readmeUrl: string;
|
|
5471
5482
|
/**
|
|
5472
|
-
*
|
|
5483
|
+
* @deprecated
|
|
5484
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
5473
5485
|
*/
|
|
5474
5486
|
public: boolean;
|
|
5487
|
+
/**
|
|
5488
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
5489
|
+
*/
|
|
5490
|
+
visibility: "public" | "private" | "unlisted";
|
|
5475
5491
|
};
|
|
5476
5492
|
}
|
|
5477
5493
|
|
|
@@ -5689,9 +5705,14 @@ interface GetDereferencedPublicPluginByIdResponse {
|
|
|
5689
5705
|
*/
|
|
5690
5706
|
readmeUrl: string;
|
|
5691
5707
|
/**
|
|
5692
|
-
*
|
|
5708
|
+
* @deprecated
|
|
5709
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
5693
5710
|
*/
|
|
5694
5711
|
public: boolean;
|
|
5712
|
+
/**
|
|
5713
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
5714
|
+
*/
|
|
5715
|
+
visibility: "public" | "private" | "unlisted";
|
|
5695
5716
|
};
|
|
5696
5717
|
}
|
|
5697
5718
|
|
|
@@ -5901,9 +5922,14 @@ interface GetPublicPluginResponse {
|
|
|
5901
5922
|
*/
|
|
5902
5923
|
readmeUrl: string;
|
|
5903
5924
|
/**
|
|
5904
|
-
*
|
|
5925
|
+
* @deprecated
|
|
5926
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
5905
5927
|
*/
|
|
5906
5928
|
public: boolean;
|
|
5929
|
+
/**
|
|
5930
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
5931
|
+
*/
|
|
5932
|
+
visibility: "public" | "private" | "unlisted";
|
|
5907
5933
|
};
|
|
5908
5934
|
}
|
|
5909
5935
|
|
|
@@ -6675,9 +6701,14 @@ interface CreateBotResponse {
|
|
|
6675
6701
|
*/
|
|
6676
6702
|
readmeUrl: string;
|
|
6677
6703
|
/**
|
|
6678
|
-
*
|
|
6704
|
+
* @deprecated
|
|
6705
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
6679
6706
|
*/
|
|
6680
6707
|
public: boolean;
|
|
6708
|
+
/**
|
|
6709
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
6710
|
+
*/
|
|
6711
|
+
visibility: "public" | "private" | "unlisted";
|
|
6681
6712
|
};
|
|
6682
6713
|
};
|
|
6683
6714
|
/**
|
|
@@ -7334,9 +7365,14 @@ interface UpdateBotResponse {
|
|
|
7334
7365
|
*/
|
|
7335
7366
|
readmeUrl: string;
|
|
7336
7367
|
/**
|
|
7337
|
-
*
|
|
7368
|
+
* @deprecated
|
|
7369
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
7338
7370
|
*/
|
|
7339
7371
|
public: boolean;
|
|
7372
|
+
/**
|
|
7373
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
7374
|
+
*/
|
|
7375
|
+
visibility: "public" | "private" | "unlisted";
|
|
7340
7376
|
};
|
|
7341
7377
|
};
|
|
7342
7378
|
/**
|
|
@@ -7808,9 +7844,14 @@ interface GetBotResponse {
|
|
|
7808
7844
|
*/
|
|
7809
7845
|
readmeUrl: string;
|
|
7810
7846
|
/**
|
|
7811
|
-
*
|
|
7847
|
+
* @deprecated
|
|
7848
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
7812
7849
|
*/
|
|
7813
7850
|
public: boolean;
|
|
7851
|
+
/**
|
|
7852
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
7853
|
+
*/
|
|
7854
|
+
visibility: "public" | "private" | "unlisted";
|
|
7814
7855
|
};
|
|
7815
7856
|
};
|
|
7816
7857
|
/**
|
|
@@ -8820,7 +8861,7 @@ interface GetWorkspaceResponse {
|
|
|
8820
8861
|
interface ListWorkspaceUsagesRequestHeaders {
|
|
8821
8862
|
}
|
|
8822
8863
|
interface ListWorkspaceUsagesRequestQuery {
|
|
8823
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
8864
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
8824
8865
|
period?: string;
|
|
8825
8866
|
}
|
|
8826
8867
|
interface ListWorkspaceUsagesRequestParams {
|
|
@@ -8850,14 +8891,14 @@ interface ListWorkspaceUsagesResponse {
|
|
|
8850
8891
|
/**
|
|
8851
8892
|
* Usage type that can be used
|
|
8852
8893
|
*/
|
|
8853
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
8894
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
8854
8895
|
}[];
|
|
8855
8896
|
}
|
|
8856
8897
|
|
|
8857
8898
|
interface BreakDownWorkspaceUsageByBotRequestHeaders {
|
|
8858
8899
|
}
|
|
8859
8900
|
interface BreakDownWorkspaceUsageByBotRequestQuery {
|
|
8860
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
8901
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
8861
8902
|
period?: string;
|
|
8862
8903
|
}
|
|
8863
8904
|
interface BreakDownWorkspaceUsageByBotRequestParams {
|
|
@@ -8884,7 +8925,7 @@ interface GetAllWorkspaceQuotaCompletionRequestBody {
|
|
|
8884
8925
|
type GetAllWorkspaceQuotaCompletionInput = GetAllWorkspaceQuotaCompletionRequestBody & GetAllWorkspaceQuotaCompletionRequestHeaders & GetAllWorkspaceQuotaCompletionRequestQuery & GetAllWorkspaceQuotaCompletionRequestParams;
|
|
8885
8926
|
interface GetAllWorkspaceQuotaCompletionResponse {
|
|
8886
8927
|
[k: string]: {
|
|
8887
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
8928
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
8888
8929
|
completion: number;
|
|
8889
8930
|
};
|
|
8890
8931
|
}
|
|
@@ -8892,7 +8933,7 @@ interface GetAllWorkspaceQuotaCompletionResponse {
|
|
|
8892
8933
|
interface GetWorkspaceQuotaRequestHeaders {
|
|
8893
8934
|
}
|
|
8894
8935
|
interface GetWorkspaceQuotaRequestQuery {
|
|
8895
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
8936
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
8896
8937
|
period?: string;
|
|
8897
8938
|
}
|
|
8898
8939
|
interface GetWorkspaceQuotaRequestParams {
|
|
@@ -8914,7 +8955,7 @@ interface GetWorkspaceQuotaResponse {
|
|
|
8914
8955
|
/**
|
|
8915
8956
|
* Usage type that can be used
|
|
8916
8957
|
*/
|
|
8917
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
8958
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
8918
8959
|
};
|
|
8919
8960
|
}
|
|
8920
8961
|
|
|
@@ -8942,7 +8983,7 @@ interface ListWorkspaceQuotasResponse {
|
|
|
8942
8983
|
/**
|
|
8943
8984
|
* Usage type that can be used
|
|
8944
8985
|
*/
|
|
8945
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
8986
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
8946
8987
|
}[];
|
|
8947
8988
|
}
|
|
8948
8989
|
|
|
@@ -9606,6 +9647,7 @@ interface CreateIntegrationRequestBody {
|
|
|
9606
9647
|
enabled: boolean;
|
|
9607
9648
|
};
|
|
9608
9649
|
};
|
|
9650
|
+
sdkVersion?: string;
|
|
9609
9651
|
/**
|
|
9610
9652
|
* Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing.
|
|
9611
9653
|
*/
|
|
@@ -10344,6 +10386,7 @@ interface ValidateIntegrationCreationRequestBody {
|
|
|
10344
10386
|
enabled: boolean;
|
|
10345
10387
|
};
|
|
10346
10388
|
};
|
|
10389
|
+
sdkVersion?: string;
|
|
10347
10390
|
/**
|
|
10348
10391
|
* Secrets are integration-wide values available in the code via environment variables formatted with a SECRET_ prefix followed by your secret name. A secret name must respect SCREAMING_SNAKE casing.
|
|
10349
10392
|
*/
|
|
@@ -10457,6 +10500,7 @@ interface UpdateIntegrationRequestBody {
|
|
|
10457
10500
|
enabled: boolean;
|
|
10458
10501
|
};
|
|
10459
10502
|
};
|
|
10503
|
+
sdkVersion?: string;
|
|
10460
10504
|
channels?: {
|
|
10461
10505
|
[k: string]: {
|
|
10462
10506
|
/**
|
|
@@ -11182,6 +11226,7 @@ interface ValidateIntegrationUpdateRequestBody {
|
|
|
11182
11226
|
enabled: boolean;
|
|
11183
11227
|
};
|
|
11184
11228
|
};
|
|
11229
|
+
sdkVersion?: string;
|
|
11185
11230
|
channels?: {
|
|
11186
11231
|
[k: string]: {
|
|
11187
11232
|
/**
|
|
@@ -12547,6 +12592,7 @@ interface CreateInterfaceRequestBody {
|
|
|
12547
12592
|
attributes?: {
|
|
12548
12593
|
[k: string]: string;
|
|
12549
12594
|
};
|
|
12595
|
+
sdkVersion?: string;
|
|
12550
12596
|
/**
|
|
12551
12597
|
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
12552
12598
|
*/
|
|
@@ -13167,6 +13213,7 @@ interface UpdateInterfaceRequestBody {
|
|
|
13167
13213
|
attributes?: {
|
|
13168
13214
|
[k: string]: string | null;
|
|
13169
13215
|
};
|
|
13216
|
+
sdkVersion?: string;
|
|
13170
13217
|
/**
|
|
13171
13218
|
* Base64 encoded svg of the interface icon. This icon is global to the interface each versions will be updated when this changes.
|
|
13172
13219
|
*/
|
|
@@ -13575,6 +13622,7 @@ interface CreatePluginRequestBody {
|
|
|
13575
13622
|
attributes?: {
|
|
13576
13623
|
[k: string]: string;
|
|
13577
13624
|
};
|
|
13625
|
+
sdkVersion?: string;
|
|
13578
13626
|
code: {
|
|
13579
13627
|
/**
|
|
13580
13628
|
* Code of plugin bundled for Node.JS
|
|
@@ -13602,9 +13650,14 @@ interface CreatePluginRequestBody {
|
|
|
13602
13650
|
*/
|
|
13603
13651
|
description?: string;
|
|
13604
13652
|
/**
|
|
13605
|
-
*
|
|
13653
|
+
* @deprecated
|
|
13654
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13606
13655
|
*/
|
|
13607
13656
|
public?: boolean;
|
|
13657
|
+
/**
|
|
13658
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
13659
|
+
*/
|
|
13660
|
+
visibility?: "public" | "private" | "unlisted";
|
|
13608
13661
|
dependencies?: {
|
|
13609
13662
|
/**
|
|
13610
13663
|
* Mapping of interface aliases to interface references
|
|
@@ -13842,9 +13895,14 @@ interface CreatePluginResponse {
|
|
|
13842
13895
|
*/
|
|
13843
13896
|
readmeUrl: string;
|
|
13844
13897
|
/**
|
|
13845
|
-
*
|
|
13898
|
+
* @deprecated
|
|
13899
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
13846
13900
|
*/
|
|
13847
13901
|
public: boolean;
|
|
13902
|
+
/**
|
|
13903
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
13904
|
+
*/
|
|
13905
|
+
visibility: "public" | "private" | "unlisted";
|
|
13848
13906
|
};
|
|
13849
13907
|
}
|
|
13850
13908
|
|
|
@@ -14053,9 +14111,14 @@ interface GetPluginResponse {
|
|
|
14053
14111
|
*/
|
|
14054
14112
|
readmeUrl: string;
|
|
14055
14113
|
/**
|
|
14056
|
-
*
|
|
14114
|
+
* @deprecated
|
|
14115
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
14057
14116
|
*/
|
|
14058
14117
|
public: boolean;
|
|
14118
|
+
/**
|
|
14119
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
14120
|
+
*/
|
|
14121
|
+
visibility: "public" | "private" | "unlisted";
|
|
14059
14122
|
};
|
|
14060
14123
|
}
|
|
14061
14124
|
|
|
@@ -14273,9 +14336,14 @@ interface GetDereferencedPluginResponse {
|
|
|
14273
14336
|
*/
|
|
14274
14337
|
readmeUrl: string;
|
|
14275
14338
|
/**
|
|
14276
|
-
*
|
|
14339
|
+
* @deprecated
|
|
14340
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
14277
14341
|
*/
|
|
14278
14342
|
public: boolean;
|
|
14343
|
+
/**
|
|
14344
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
14345
|
+
*/
|
|
14346
|
+
visibility: "public" | "private" | "unlisted";
|
|
14279
14347
|
};
|
|
14280
14348
|
}
|
|
14281
14349
|
|
|
@@ -14485,9 +14553,14 @@ interface GetPluginByNameResponse {
|
|
|
14485
14553
|
*/
|
|
14486
14554
|
readmeUrl: string;
|
|
14487
14555
|
/**
|
|
14488
|
-
*
|
|
14556
|
+
* @deprecated
|
|
14557
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
14489
14558
|
*/
|
|
14490
14559
|
public: boolean;
|
|
14560
|
+
/**
|
|
14561
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
14562
|
+
*/
|
|
14563
|
+
visibility: "public" | "private" | "unlisted";
|
|
14491
14564
|
};
|
|
14492
14565
|
}
|
|
14493
14566
|
|
|
@@ -14627,6 +14700,7 @@ interface UpdatePluginRequestBody {
|
|
|
14627
14700
|
attributes?: {
|
|
14628
14701
|
[k: string]: string | null;
|
|
14629
14702
|
};
|
|
14703
|
+
sdkVersion?: string;
|
|
14630
14704
|
code?: {
|
|
14631
14705
|
/**
|
|
14632
14706
|
* Code of plugin bundled for Node.JS
|
|
@@ -14654,9 +14728,14 @@ interface UpdatePluginRequestBody {
|
|
|
14654
14728
|
*/
|
|
14655
14729
|
description?: string;
|
|
14656
14730
|
/**
|
|
14657
|
-
*
|
|
14731
|
+
* @deprecated
|
|
14732
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
14658
14733
|
*/
|
|
14659
14734
|
public?: boolean;
|
|
14735
|
+
/**
|
|
14736
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
14737
|
+
*/
|
|
14738
|
+
visibility?: "public" | "private" | "unlisted";
|
|
14660
14739
|
dependencies?: {
|
|
14661
14740
|
/**
|
|
14662
14741
|
* Mapping of interface aliases to interface references
|
|
@@ -14894,9 +14973,14 @@ interface UpdatePluginResponse {
|
|
|
14894
14973
|
*/
|
|
14895
14974
|
readmeUrl: string;
|
|
14896
14975
|
/**
|
|
14897
|
-
*
|
|
14976
|
+
* @deprecated
|
|
14977
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
14898
14978
|
*/
|
|
14899
14979
|
public: boolean;
|
|
14980
|
+
/**
|
|
14981
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
14982
|
+
*/
|
|
14983
|
+
visibility: "public" | "private" | "unlisted";
|
|
14900
14984
|
};
|
|
14901
14985
|
}
|
|
14902
14986
|
|
|
@@ -14964,9 +15048,14 @@ interface ListPluginsResponse {
|
|
|
14964
15048
|
*/
|
|
14965
15049
|
readmeUrl: string;
|
|
14966
15050
|
/**
|
|
14967
|
-
*
|
|
15051
|
+
* @deprecated
|
|
15052
|
+
* [DEPRECATED] Indicates if the plugin is public. Please use the "visibility" parameter instead.
|
|
14968
15053
|
*/
|
|
14969
15054
|
public: boolean;
|
|
15055
|
+
/**
|
|
15056
|
+
* The plugin's visibility. Public plugins are available to all and cannot be updated without creating a new version. Unlisted plugins behave identically to public plugins, but they are not listed in the plugin hub. By default, plugins are private and only accessible to the workspace that created them.
|
|
15057
|
+
*/
|
|
15058
|
+
visibility: "public" | "private" | "unlisted";
|
|
14970
15059
|
}[];
|
|
14971
15060
|
meta: {
|
|
14972
15061
|
/**
|
|
@@ -14994,7 +15083,7 @@ interface GetPluginCodeResponse {
|
|
|
14994
15083
|
interface GetUsageRequestHeaders {
|
|
14995
15084
|
}
|
|
14996
15085
|
interface GetUsageRequestQuery {
|
|
14997
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
15086
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
14998
15087
|
period?: string;
|
|
14999
15088
|
}
|
|
15000
15089
|
interface GetUsageRequestParams {
|
|
@@ -15024,7 +15113,7 @@ interface GetUsageResponse {
|
|
|
15024
15113
|
/**
|
|
15025
15114
|
* Usage type that can be used
|
|
15026
15115
|
*/
|
|
15027
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
15116
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
15028
15117
|
};
|
|
15029
15118
|
}
|
|
15030
15119
|
|
|
@@ -15061,14 +15150,14 @@ interface GetMultipleUsagesResponse {
|
|
|
15061
15150
|
/**
|
|
15062
15151
|
* Usage type that can be used
|
|
15063
15152
|
*/
|
|
15064
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
15153
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
15065
15154
|
}[];
|
|
15066
15155
|
}
|
|
15067
15156
|
|
|
15068
15157
|
interface ListUsageHistoryRequestHeaders {
|
|
15069
15158
|
}
|
|
15070
15159
|
interface ListUsageHistoryRequestQuery {
|
|
15071
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
15160
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
15072
15161
|
}
|
|
15073
15162
|
interface ListUsageHistoryRequestParams {
|
|
15074
15163
|
id: string;
|
|
@@ -15097,14 +15186,14 @@ interface ListUsageHistoryResponse {
|
|
|
15097
15186
|
/**
|
|
15098
15187
|
* Usage type that can be used
|
|
15099
15188
|
*/
|
|
15100
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
15189
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
15101
15190
|
}[];
|
|
15102
15191
|
}
|
|
15103
15192
|
|
|
15104
15193
|
interface ListUsageActivityRequestHeaders {
|
|
15105
15194
|
}
|
|
15106
15195
|
interface ListUsageActivityRequestQuery {
|
|
15107
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
15196
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
15108
15197
|
timestampFrom?: string;
|
|
15109
15198
|
timestampUntil?: string;
|
|
15110
15199
|
nextToken?: string;
|
|
@@ -15132,7 +15221,7 @@ interface ListUsageActivityResponse {
|
|
|
15132
15221
|
interface ListUsageActivityDailyRequestHeaders {
|
|
15133
15222
|
}
|
|
15134
15223
|
interface ListUsageActivityDailyRequestQuery {
|
|
15135
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
15224
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
15136
15225
|
dateFrom?: string;
|
|
15137
15226
|
dateUntil?: string;
|
|
15138
15227
|
nextToken?: string;
|
|
@@ -15254,6 +15343,10 @@ interface UpsertFileRequestBody {
|
|
|
15254
15343
|
*/
|
|
15255
15344
|
configuration: {
|
|
15256
15345
|
parsing?: {
|
|
15346
|
+
/**
|
|
15347
|
+
* The parsing mode to index the file. Using `agent` will use agentic document processing to parse the file and will incurr in AI Spend cost, while `standard` will use a faster but less accurate parser that will not incur in AI Spend cost.
|
|
15348
|
+
*/
|
|
15349
|
+
mode?: "agent" | "standard";
|
|
15257
15350
|
/**
|
|
15258
15351
|
* The minimum length a standalone paragraph should have. If a paragraph is shorter than this, it will be merged with the next immediate paragraph.
|
|
15259
15352
|
*/
|
|
@@ -16307,7 +16400,7 @@ interface ListTablesResponse {
|
|
|
16307
16400
|
*/
|
|
16308
16401
|
name: string;
|
|
16309
16402
|
/**
|
|
16310
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16403
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16311
16404
|
*/
|
|
16312
16405
|
factor?: number;
|
|
16313
16406
|
/**
|
|
@@ -16452,7 +16545,7 @@ interface GetTableResponse {
|
|
|
16452
16545
|
*/
|
|
16453
16546
|
name: string;
|
|
16454
16547
|
/**
|
|
16455
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16548
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16456
16549
|
*/
|
|
16457
16550
|
factor?: number;
|
|
16458
16551
|
/**
|
|
@@ -16597,7 +16690,7 @@ interface GetOrCreateTableRequestParams {
|
|
|
16597
16690
|
}
|
|
16598
16691
|
interface GetOrCreateTableRequestBody {
|
|
16599
16692
|
/**
|
|
16600
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16693
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16601
16694
|
*/
|
|
16602
16695
|
factor?: number;
|
|
16603
16696
|
/**
|
|
@@ -16633,7 +16726,7 @@ interface GetOrCreateTableResponse {
|
|
|
16633
16726
|
*/
|
|
16634
16727
|
name: string;
|
|
16635
16728
|
/**
|
|
16636
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16729
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16637
16730
|
*/
|
|
16638
16731
|
factor?: number;
|
|
16639
16732
|
/**
|
|
@@ -16785,7 +16878,7 @@ interface CreateTableRequestBody {
|
|
|
16785
16878
|
*/
|
|
16786
16879
|
name: string;
|
|
16787
16880
|
/**
|
|
16788
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16881
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16789
16882
|
*/
|
|
16790
16883
|
factor?: number;
|
|
16791
16884
|
/**
|
|
@@ -16821,7 +16914,7 @@ interface CreateTableResponse {
|
|
|
16821
16914
|
*/
|
|
16822
16915
|
name: string;
|
|
16823
16916
|
/**
|
|
16824
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
16917
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16825
16918
|
*/
|
|
16826
16919
|
factor?: number;
|
|
16827
16920
|
/**
|
|
@@ -16959,7 +17052,7 @@ interface DuplicateTableRequestBody {
|
|
|
16959
17052
|
*/
|
|
16960
17053
|
schemaOnly?: boolean;
|
|
16961
17054
|
/**
|
|
16962
|
-
*
|
|
17055
|
+
* Override the factor for the duplicated table. If not provided, the new table will use the same factor as the source table.
|
|
16963
17056
|
*/
|
|
16964
17057
|
factor?: number;
|
|
16965
17058
|
}
|
|
@@ -16975,7 +17068,7 @@ interface DuplicateTableResponse {
|
|
|
16975
17068
|
*/
|
|
16976
17069
|
name: string;
|
|
16977
17070
|
/**
|
|
16978
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
17071
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
16979
17072
|
*/
|
|
16980
17073
|
factor?: number;
|
|
16981
17074
|
/**
|
|
@@ -17216,6 +17309,10 @@ interface UpdateTableRequestBody {
|
|
|
17216
17309
|
* Indicates if the table is enabled for computation.
|
|
17217
17310
|
*/
|
|
17218
17311
|
isComputeEnabled?: boolean;
|
|
17312
|
+
/**
|
|
17313
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased, not decreased. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota.
|
|
17314
|
+
*/
|
|
17315
|
+
factor?: number;
|
|
17219
17316
|
}
|
|
17220
17317
|
type UpdateTableInput = UpdateTableRequestBody & UpdateTableRequestHeaders & UpdateTableRequestQuery & UpdateTableRequestParams;
|
|
17221
17318
|
interface UpdateTableResponse {
|
|
@@ -17229,7 +17326,7 @@ interface UpdateTableResponse {
|
|
|
17229
17326
|
*/
|
|
17230
17327
|
name: string;
|
|
17231
17328
|
/**
|
|
17232
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
17329
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
17233
17330
|
*/
|
|
17234
17331
|
factor?: number;
|
|
17235
17332
|
/**
|
|
@@ -17386,7 +17483,7 @@ interface RenameTableColumnResponse {
|
|
|
17386
17483
|
*/
|
|
17387
17484
|
name: string;
|
|
17388
17485
|
/**
|
|
17389
|
-
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count
|
|
17486
|
+
* The 'factor' multiplies the row's data storage limit by 4KB and its quota count. It can only be increased (not decreased) after table creation via updateTable. For instance, a factor of 2 increases storage to 8KB but counts as 2 rows in your quota. The default factor is 1.
|
|
17390
17487
|
*/
|
|
17391
17488
|
factor?: number;
|
|
17392
17489
|
/**
|
|
@@ -18134,6 +18231,8 @@ declare class Client extends Client$1 implements IClient {
|
|
|
18134
18231
|
sortField?: "createdAt" | "updatedAt" | undefined;
|
|
18135
18232
|
sortDirection?: "asc" | "desc" | undefined;
|
|
18136
18233
|
participantIds?: string[] | undefined;
|
|
18234
|
+
afterDate?: string | undefined;
|
|
18235
|
+
beforeDate?: string | undefined;
|
|
18137
18236
|
}) => AsyncCollection<{
|
|
18138
18237
|
id: string;
|
|
18139
18238
|
currentTaskId?: string;
|
|
@@ -18409,6 +18508,7 @@ declare class Client extends Client$1 implements IClient {
|
|
|
18409
18508
|
iconUrl: string;
|
|
18410
18509
|
readmeUrl: string;
|
|
18411
18510
|
public: boolean;
|
|
18511
|
+
visibility: "public" | "private" | "unlisted";
|
|
18412
18512
|
}>;
|
|
18413
18513
|
publicPlugins: (props: {
|
|
18414
18514
|
name?: string | undefined;
|
|
@@ -18424,6 +18524,7 @@ declare class Client extends Client$1 implements IClient {
|
|
|
18424
18524
|
iconUrl: string;
|
|
18425
18525
|
readmeUrl: string;
|
|
18426
18526
|
public: boolean;
|
|
18527
|
+
visibility: "public" | "private" | "unlisted";
|
|
18427
18528
|
}>;
|
|
18428
18529
|
activities: (props: {
|
|
18429
18530
|
botId: string;
|
|
@@ -18499,7 +18600,7 @@ declare class Client extends Client$1 implements IClient {
|
|
|
18499
18600
|
};
|
|
18500
18601
|
}>;
|
|
18501
18602
|
usageActivity: (props: {
|
|
18502
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
18603
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
18503
18604
|
id: string;
|
|
18504
18605
|
timestampFrom?: string | undefined;
|
|
18505
18606
|
timestampUntil?: string | undefined;
|
|
@@ -18512,7 +18613,7 @@ declare class Client extends Client$1 implements IClient {
|
|
|
18512
18613
|
};
|
|
18513
18614
|
}>;
|
|
18514
18615
|
usageActivityDaily: (props: {
|
|
18515
|
-
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive";
|
|
18616
|
+
type: "invocation_timeout" | "invocation_calls" | "storage_count" | "bot_count" | "knowledgebase_vector_storage" | "workspace_ratelimit" | "table_row_count" | "workspace_member_count" | "integrations_owned_count" | "ai_spend" | "openai_spend" | "bing_search_spend" | "always_alive" | "indexed_file_count";
|
|
18516
18617
|
id: string;
|
|
18517
18618
|
dateFrom?: string | undefined;
|
|
18518
18619
|
dateUntil?: string | undefined;
|
|
@@ -19070,7 +19171,7 @@ declare class Cognitive {
|
|
|
19070
19171
|
private _generateContent;
|
|
19071
19172
|
}
|
|
19072
19173
|
|
|
19073
|
-
type Models = 'auto' | 'best' | 'fast' | 'anthropic:claude-3-5-haiku-20241022' | 'anthropic:claude-3-
|
|
19174
|
+
type Models = 'auto' | 'best' | 'fast' | 'anthropic:claude-3-5-haiku-20241022' | 'anthropic:claude-3-7-sonnet-20250219' | 'anthropic:claude-3-haiku-20240307' | 'anthropic:claude-haiku-4-5-20251001' | 'anthropic:claude-haiku-4-5-reasoning-20251001' | 'anthropic:claude-sonnet-4-20250514' | 'anthropic:claude-sonnet-4-5-20250929' | 'cerebras:gpt-oss-120b' | 'cerebras:llama-4-scout-17b-16e-instruct' | 'cerebras:llama3.1-8b' | 'cerebras:llama3.3-70b' | 'cerebras:qwen-3-32b' | 'fireworks-ai:deepseek-r1-0528' | 'fireworks-ai:deepseek-v3-0324' | 'fireworks-ai:gpt-oss-120b' | 'fireworks-ai:gpt-oss-20b' | 'fireworks-ai:llama-v3p1-8b-instruct' | 'fireworks-ai:llama-v3p3-70b-instruct' | 'fireworks-ai:llama4-maverick-instruct-basic' | 'fireworks-ai:llama4-scout-instruct-basic' | 'google-ai:gemini-2.0-flash' | 'google-ai:gemini-2.5-flash' | 'google-ai:gemini-2.5-pro' | 'groq:gpt-oss-120b' | 'groq:gpt-oss-20b' | 'groq:llama-3.1-8b-instant' | 'groq:llama-3.3-70b-versatile' | 'openai:gpt-4.1-2025-04-14' | 'openai:gpt-4.1-mini-2025-04-14' | 'openai:gpt-4.1-nano-2025-04-14' | 'openai:gpt-4o-2024-11-20' | 'openai:gpt-4o-mini-2024-07-18' | 'openai:gpt-5-2025-08-07' | 'openai:gpt-5-mini-2025-08-07' | 'openai:gpt-5-nano-2025-08-07' | 'openai:gpt-5.1-2025-11-13' | 'openai:o1-2024-12-17' | 'openai:o1-mini-2024-09-12' | 'openai:o3-2025-04-16' | 'openai:o3-mini-2025-01-31' | 'openai:o4-mini-2025-04-16' | 'openrouter:gpt-oss-120b' | 'xai:grok-3' | 'xai:grok-3-mini' | 'xai:grok-4-0709' | 'xai:grok-4-fast-non-reasoning' | 'xai:grok-4-fast-reasoning' | 'xai:grok-code-fast-1' | 'openai:gpt-5' | 'openai:gpt-5-mini' | 'openai:gpt-5-nano' | 'openai:o4-mini' | 'openai:o3' | 'openai:gpt-4.1' | 'openai:gpt-4.1-mini' | 'openai:gpt-4.1-nano' | 'openai:o3-mini' | 'openai:o1-mini' | 'openai:gpt-4o-mini' | 'openai:gpt-4o' | 'anthropic:claude-sonnet-4-5' | 'anthropic:claude-sonnet-4' | 'anthropic:claude-sonnet-4-reasoning' | 'anthropic:claude-haiku-4-5' | 'anthropic:claude-haiku-4-5-reasoning' | 'google-ai:models/gemini-2.0-flash' | 'groq:openai/gpt-oss-20b' | 'groq:openai/gpt-oss-120b' | 'fireworks-ai:accounts/fireworks/models/gpt-oss-20b' | 'fireworks-ai:accounts/fireworks/models/gpt-oss-120b' | 'fireworks-ai:accounts/fireworks/models/deepseek-r1-0528' | 'fireworks-ai:accounts/fireworks/models/deepseek-v3-0324' | 'fireworks-ai:accounts/fireworks/models/llama4-maverick-instruct-basic' | 'fireworks-ai:accounts/fireworks/models/llama4-scout-instruct-basic' | 'fireworks-ai:accounts/fireworks/models/llama-v3p3-70b-instruct' | 'fireworks-ai:accounts/fireworks/models/deepseek-r1' | 'fireworks-ai:accounts/fireworks/models/deepseek-r1-basic' | 'fireworks-ai:accounts/fireworks/models/deepseek-v3' | 'fireworks-ai:accounts/fireworks/models/llama-v3p1-405b-instruct' | 'fireworks-ai:accounts/fireworks/models/llama-v3p1-70b-instruct' | 'fireworks-ai:accounts/fireworks/models/llama-v3p1-8b-instruct' | 'fireworks-ai:accounts/fireworks/models/mixtral-8x22b-instruct' | 'fireworks-ai:accounts/fireworks/models/mixtral-8x7b-instruct' | 'fireworks-ai:accounts/fireworks/models/mythomax-l2-13b' | 'fireworks-ai:accounts/fireworks/models/gemma2-9b-it' | ({} & string);
|
|
19074
19175
|
type CognitiveRequest = {
|
|
19075
19176
|
/**
|
|
19076
19177
|
* @minItems 1
|