@aws-sdk/client-bedrock-agentcore 3.1038.0 → 3.1039.0
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/README.md +105 -7
- package/dist-cjs/index.js +261 -0
- package/dist-cjs/schemas/schemas_0.js +812 -90
- package/dist-es/BedrockAgentCore.js +34 -0
- package/dist-es/commands/CreateABTestCommand.js +16 -0
- package/dist-es/commands/DeleteABTestCommand.js +16 -0
- package/dist-es/commands/DeleteBatchEvaluationCommand.js +16 -0
- package/dist-es/commands/DeleteRecommendationCommand.js +16 -0
- package/dist-es/commands/GetABTestCommand.js +16 -0
- package/dist-es/commands/GetBatchEvaluationCommand.js +16 -0
- package/dist-es/commands/GetRecommendationCommand.js +16 -0
- package/dist-es/commands/ListABTestsCommand.js +16 -0
- package/dist-es/commands/ListBatchEvaluationsCommand.js +16 -0
- package/dist-es/commands/ListRecommendationsCommand.js +16 -0
- package/dist-es/commands/StartBatchEvaluationCommand.js +16 -0
- package/dist-es/commands/StartRecommendationCommand.js +16 -0
- package/dist-es/commands/StopBatchEvaluationCommand.js +16 -0
- package/dist-es/commands/UpdateABTestCommand.js +16 -0
- package/dist-es/commands/index.js +14 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +47 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListABTestsPaginator.js +4 -0
- package/dist-es/pagination/ListBatchEvaluationsPaginator.js +4 -0
- package/dist-es/pagination/ListRecommendationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +804 -84
- package/dist-types/BedrockAgentCore.d.ts +122 -0
- package/dist-types/BedrockAgentCoreClient.d.ts +16 -2
- package/dist-types/commands/CreateABTestCommand.d.ts +134 -0
- package/dist-types/commands/DeleteABTestCommand.d.ts +97 -0
- package/dist-types/commands/DeleteBatchEvaluationCommand.d.ts +97 -0
- package/dist-types/commands/DeleteRecommendationCommand.d.ts +93 -0
- package/dist-types/commands/GetABTestCommand.d.ts +165 -0
- package/dist-types/commands/GetBatchEvaluationCommand.d.ts +148 -0
- package/dist-types/commands/GetRecommendationCommand.d.ts +220 -0
- package/dist-types/commands/ListABTestsCommand.d.ts +103 -0
- package/dist-types/commands/ListBatchEvaluationsCommand.d.ts +126 -0
- package/dist-types/commands/ListRecommendationsCommand.d.ts +100 -0
- package/dist-types/commands/SearchRegistryRecordsCommand.d.ts +2 -1
- package/dist-types/commands/StartBatchEvaluationCommand.d.ts +172 -0
- package/dist-types/commands/StartRecommendationCommand.d.ts +300 -0
- package/dist-types/commands/StopBatchEvaluationCommand.d.ts +98 -0
- package/dist-types/commands/UpdateABTestCommand.d.ts +136 -0
- package/dist-types/commands/index.d.ts +14 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +95 -0
- package/dist-types/models/models_0.d.ts +2390 -299
- package/dist-types/models/models_1.d.ts +99 -0
- package/dist-types/pagination/ListABTestsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBatchEvaluationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommendationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +96 -0
- package/dist-types/ts3.4/BedrockAgentCore.d.ts +262 -0
- package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +84 -0
- package/dist-types/ts3.4/commands/CreateABTestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteABTestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteBatchEvaluationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetABTestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetBatchEvaluationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListABTestsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListBatchEvaluationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SearchRegistryRecordsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartBatchEvaluationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopBatchEvaluationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateABTestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +14 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +58 -0
- package/dist-types/ts3.4/models/models_0.d.ts +704 -24
- package/dist-types/ts3.4/models/models_1.d.ts +29 -0
- package/dist-types/ts3.4/pagination/ListABTestsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBatchEvaluationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +96 -0
- package/package.json +7 -7
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
const _A = "Accept";
|
|
2
|
+
const _ABTEC = "ABTestEvaluationConfig";
|
|
3
|
+
const _ABTR = "ABTestResults";
|
|
4
|
+
const _ABTS = "ABTestSummary";
|
|
5
|
+
const _ABTSL = "ABTestSummaryList";
|
|
2
6
|
const _ACD = "AgentCardDefinition";
|
|
3
7
|
const _AD = "A2aDescriptor";
|
|
4
8
|
const _ADE = "AccessDeniedException";
|
|
@@ -8,6 +12,7 @@ const _ASD = "AgentSkillsDescriptor";
|
|
|
8
12
|
const _ASL = "ActorSummaryList";
|
|
9
13
|
const _ASU = "AutomationStreamUpdate";
|
|
10
14
|
const _ASu = "AutomationStream";
|
|
15
|
+
const _ATC = "AgentTracesConfig";
|
|
11
16
|
const _ATT = "AccessTokenType";
|
|
12
17
|
const _AUT = "AuthorizationUrlType";
|
|
13
18
|
const _B = "Body";
|
|
@@ -23,6 +28,8 @@ const _BDMRO = "BatchDeleteMemoryRecordsOutput";
|
|
|
23
28
|
const _BE = "BrowserExtension";
|
|
24
29
|
const _BEP = "BrowserEnterprisePolicy";
|
|
25
30
|
const _BEPr = "BrowserEnterprisePolicies";
|
|
31
|
+
const _BES = "BatchEvaluationSummary";
|
|
32
|
+
const _BESL = "BatchEvaluationSummaryList";
|
|
26
33
|
const _BEr = "BrowserExtensions";
|
|
27
34
|
const _BF = "BranchFilter";
|
|
28
35
|
const _BPC = "BrowserProfileConfiguration";
|
|
@@ -34,14 +41,21 @@ const _BUMRI = "BatchUpdateMemoryRecordsInput";
|
|
|
34
41
|
const _BUMRO = "BatchUpdateMemoryRecordsOutput";
|
|
35
42
|
const _Br = "Branch";
|
|
36
43
|
const _C = "Certificate";
|
|
44
|
+
const _CABT = "CreateABTest";
|
|
45
|
+
const _CABTR = "CreateABTestRequest";
|
|
46
|
+
const _CABTRr = "CreateABTestResponse";
|
|
37
47
|
const _CB = "ContentBlock";
|
|
38
48
|
const _CBL = "ContentBlockList";
|
|
49
|
+
const _CBR = "ConfigurationBundleRef";
|
|
50
|
+
const _CBTE = "ConfigurationBundleToolEntry";
|
|
51
|
+
const _CBTEL = "ConfigurationBundleToolEntryList";
|
|
39
52
|
const _CD = "CustomDescriptor";
|
|
40
53
|
const _CDE = "ContentDeltaEvent";
|
|
41
54
|
const _CE = "ConflictException";
|
|
42
55
|
const _CEI = "CreateEventInput";
|
|
43
56
|
const _CEO = "CreateEventOutput";
|
|
44
57
|
const _CEr = "CreateEvent";
|
|
58
|
+
const _CI = "ConfidenceInterval";
|
|
45
59
|
const _CIR = "CodeInterpreterResult";
|
|
46
60
|
const _CISO = "CodeInterpreterStreamOutput";
|
|
47
61
|
const _CISS = "CodeInterpreterSessionSummary";
|
|
@@ -52,14 +66,28 @@ const _CRTA = "CompleteResourceTokenAuth";
|
|
|
52
66
|
const _CRTAR = "CompleteResourceTokenAuthRequest";
|
|
53
67
|
const _CRTARo = "CompleteResourceTokenAuthResponse";
|
|
54
68
|
const _CRVT = "CustomRequestValueType";
|
|
69
|
+
const _CS = "ControlStats";
|
|
55
70
|
const _CSE = "ContentStartEvent";
|
|
56
71
|
const _CSEo = "ContentStopEvent";
|
|
57
72
|
const _CT = "Content-Type";
|
|
73
|
+
const _CWFC = "CloudWatchFilterConfig";
|
|
74
|
+
const _CWLF = "CloudWatchLogsFilter";
|
|
75
|
+
const _CWLFL = "CloudWatchLogsFilterList";
|
|
76
|
+
const _CWLR = "CloudWatchLogsRule";
|
|
77
|
+
const _CWLS = "CloudWatchLogsSource";
|
|
78
|
+
const _CWLTC = "CloudWatchLogsTraceConfig";
|
|
79
|
+
const _CWOC = "CloudWatchOutputConfig";
|
|
58
80
|
const _Ce = "Certificates";
|
|
59
81
|
const _Co = "Conversational";
|
|
60
82
|
const _Con = "Content";
|
|
61
83
|
const _Cont = "Context";
|
|
62
84
|
const _D = "Description";
|
|
85
|
+
const _DABT = "DeleteABTest";
|
|
86
|
+
const _DABTR = "DeleteABTestRequest";
|
|
87
|
+
const _DABTRe = "DeleteABTestResponse";
|
|
88
|
+
const _DBE = "DeleteBatchEvaluation";
|
|
89
|
+
const _DBER = "DeleteBatchEvaluationRequest";
|
|
90
|
+
const _DBERe = "DeleteBatchEvaluationResponse";
|
|
63
91
|
const _DE = "DeleteEvent";
|
|
64
92
|
const _DEI = "DeleteEventInput";
|
|
65
93
|
const _DEO = "DeleteEventOutput";
|
|
@@ -67,9 +95,13 @@ const _DIE = "DuplicateIdException";
|
|
|
67
95
|
const _DMR = "DeleteMemoryRecord";
|
|
68
96
|
const _DMRI = "DeleteMemoryRecordInput";
|
|
69
97
|
const _DMRO = "DeleteMemoryRecordOutput";
|
|
98
|
+
const _DR = "DeleteRecommendation";
|
|
99
|
+
const _DRR = "DeleteRecommendationRequest";
|
|
100
|
+
const _DRRe = "DeleteRecommendationResponse";
|
|
101
|
+
const _DSC = "DataSourceConfig";
|
|
70
102
|
const _De = "Descriptors";
|
|
71
103
|
const _Do = "Document";
|
|
72
|
-
const _E = "
|
|
104
|
+
const _E = "Evaluator";
|
|
73
105
|
const _EC = "EvaluationContent";
|
|
74
106
|
const _ECL = "EvaluationContentList";
|
|
75
107
|
const _EE = "EvaluationExplanation";
|
|
@@ -80,9 +112,14 @@ const _EJFI = "ExtractionJobFilterInput";
|
|
|
80
112
|
const _EJM = "ExtractionJobMetadata";
|
|
81
113
|
const _EJML = "ExtractionJobMetadataList";
|
|
82
114
|
const _EJMx = "ExtractionJobMessages";
|
|
83
|
-
const
|
|
115
|
+
const _EJR = "EvaluationJobResults";
|
|
116
|
+
const _EL = "EvaluatorList";
|
|
117
|
+
const _ELv = "EventList";
|
|
118
|
+
const _EM = "EvaluatorMetric";
|
|
84
119
|
const _EMFE = "EventMetadataFilterExpression";
|
|
85
120
|
const _EMFL = "EventMetadataFilterList";
|
|
121
|
+
const _EML = "EvaluatorMetricList";
|
|
122
|
+
const _EMv = "EvaluationMetadata";
|
|
86
123
|
const _EP = "ExternalProxy";
|
|
87
124
|
const _ER = "EvaluateRequest";
|
|
88
125
|
const _ERC = "EvaluationResultContent";
|
|
@@ -90,12 +127,23 @@ const _ERI = "EvaluationReferenceInput";
|
|
|
90
127
|
const _ERIv = "EvaluationReferenceInputs";
|
|
91
128
|
const _ERv = "EvaluateResponse";
|
|
92
129
|
const _ERva = "EvaluationResults";
|
|
130
|
+
const _ES = "EvaluatorStatistics";
|
|
131
|
+
const _ESL = "EvaluatorSummaryList";
|
|
132
|
+
const _ESv = "EvaluatorSummary";
|
|
93
133
|
const _ET = "EvaluationTarget";
|
|
94
|
-
const _Ev = "
|
|
134
|
+
const _Ev = "Event";
|
|
135
|
+
const _Eva = "Evaluate";
|
|
95
136
|
const _FI = "FilterInput";
|
|
137
|
+
const _FV = "FilterValue";
|
|
138
|
+
const _GABT = "GetABTest";
|
|
139
|
+
const _GABTR = "GetABTestRequest";
|
|
140
|
+
const _GABTRe = "GetABTestResponse";
|
|
96
141
|
const _GAC = "GetAgentCard";
|
|
97
142
|
const _GACR = "GetAgentCardRequest";
|
|
98
143
|
const _GACRe = "GetAgentCardResponse";
|
|
144
|
+
const _GBE = "GetBatchEvaluation";
|
|
145
|
+
const _GBER = "GetBatchEvaluationRequest";
|
|
146
|
+
const _GBERe = "GetBatchEvaluationResponse";
|
|
99
147
|
const _GBS = "GetBrowserSession";
|
|
100
148
|
const _GBSR = "GetBrowserSessionRequest";
|
|
101
149
|
const _GBSRe = "GetBrowserSessionResponse";
|
|
@@ -105,15 +153,23 @@ const _GCISRe = "GetCodeInterpreterSessionResponse";
|
|
|
105
153
|
const _GE = "GetEvent";
|
|
106
154
|
const _GEI = "GetEventInput";
|
|
107
155
|
const _GEO = "GetEventOutput";
|
|
156
|
+
const _GF = "GatewayFilter";
|
|
108
157
|
const _GMR = "GetMemoryRecord";
|
|
109
158
|
const _GMRI = "GetMemoryRecordInput";
|
|
110
159
|
const _GMRO = "GetMemoryRecordOutput";
|
|
160
|
+
const _GR = "GetRecommendation";
|
|
111
161
|
const _GRAK = "GetResourceApiKey";
|
|
112
162
|
const _GRAKR = "GetResourceApiKeyRequest";
|
|
113
163
|
const _GRAKRe = "GetResourceApiKeyResponse";
|
|
114
164
|
const _GROT = "GetResourceOauth2Token";
|
|
115
165
|
const _GROTR = "GetResourceOauth2TokenRequest";
|
|
116
166
|
const _GROTRe = "GetResourceOauth2TokenResponse";
|
|
167
|
+
const _GRR = "GetRecommendationRequest";
|
|
168
|
+
const _GRRe = "GetRecommendationResponse";
|
|
169
|
+
const _GTS = "GroundTruthSource";
|
|
170
|
+
const _GTT = "GroundTruthTurn";
|
|
171
|
+
const _GTTI = "GroundTruthTurnInput";
|
|
172
|
+
const _GTTL = "GroundTruthTurnList";
|
|
117
173
|
const _GWAT = "GetWorkloadAccessToken";
|
|
118
174
|
const _GWATFJWT = "GetWorkloadAccessTokenForJWT";
|
|
119
175
|
const _GWATFJWTR = "GetWorkloadAccessTokenForJWTRequest";
|
|
@@ -185,6 +241,7 @@ const _ICBL = "InputContentBlockList";
|
|
|
185
241
|
const _ICI = "InvokeCodeInterpreter";
|
|
186
242
|
const _ICIR = "InvokeCodeInterpreterRequest";
|
|
187
243
|
const _ICIRn = "InvokeCodeInterpreterResponse";
|
|
244
|
+
const _IGT = "InlineGroundTruth";
|
|
188
245
|
const _IH = "InvokeHarness";
|
|
189
246
|
const _IHR = "InvokeHarnessRequest";
|
|
190
247
|
const _IHRn = "InvokeHarnessResponse";
|
|
@@ -198,8 +255,14 @@ const _KSR = "KeyShortcutResult";
|
|
|
198
255
|
const _KTA = "KeyTypeArguments";
|
|
199
256
|
const _KTR = "KeyTypeResult";
|
|
200
257
|
const _LA = "ListActors";
|
|
258
|
+
const _LABT = "ListABTests";
|
|
259
|
+
const _LABTR = "ListABTestsRequest";
|
|
260
|
+
const _LABTRi = "ListABTestsResponse";
|
|
201
261
|
const _LAI = "ListActorsInput";
|
|
202
262
|
const _LAO = "ListActorsOutput";
|
|
263
|
+
const _LBE = "ListBatchEvaluations";
|
|
264
|
+
const _LBER = "ListBatchEvaluationsRequest";
|
|
265
|
+
const _LBERi = "ListBatchEvaluationsResponse";
|
|
203
266
|
const _LBS = "ListBrowserSessions";
|
|
204
267
|
const _LBSR = "ListBrowserSessionsRequest";
|
|
205
268
|
const _LBSRi = "ListBrowserSessionsResponse";
|
|
@@ -216,6 +279,9 @@ const _LMEJO = "ListMemoryExtractionJobsOutput";
|
|
|
216
279
|
const _LMR = "ListMemoryRecords";
|
|
217
280
|
const _LMRI = "ListMemoryRecordsInput";
|
|
218
281
|
const _LMRO = "ListMemoryRecordsOutput";
|
|
282
|
+
const _LR = "ListRecommendations";
|
|
283
|
+
const _LRR = "ListRecommendationsRequest";
|
|
284
|
+
const _LRRi = "ListRecommendationsResponse";
|
|
219
285
|
const _LS = "ListSessions";
|
|
220
286
|
const _LSI = "ListSessionsInput";
|
|
221
287
|
const _LSO = "ListSessionsOutput";
|
|
@@ -252,28 +318,45 @@ const _MV = "MetadataValue";
|
|
|
252
318
|
const _OACP = "OAuthCredentialProvider";
|
|
253
319
|
const _OACPV = "OAuthCustomParametersValue";
|
|
254
320
|
const _OACPu = "OAuthCustomParameters";
|
|
321
|
+
const _OC = "OutputConfig";
|
|
255
322
|
const _P = "Proxies";
|
|
256
323
|
const _PB = "ProxyBypass";
|
|
257
324
|
const _PC = "ProxyConfiguration";
|
|
258
325
|
const _PCr = "ProxyCredentials";
|
|
259
326
|
const _PT = "PayloadType";
|
|
260
327
|
const _PTL = "PayloadTypeList";
|
|
328
|
+
const _PVOEC = "PerVariantOnlineEvaluationConfig";
|
|
329
|
+
const _PVOECL = "PerVariantOnlineEvaluationConfigList";
|
|
261
330
|
const _Pr = "Proxy";
|
|
262
331
|
const _RC = "ResourceContent";
|
|
263
332
|
const _RCE = "RetryableConflictException";
|
|
264
333
|
const _RCEu = "RuntimeClientError";
|
|
265
334
|
const _RCe = "ResponseChunk";
|
|
335
|
+
const _RCec = "RecommendationConfig";
|
|
266
336
|
const _RE = "RightExpression";
|
|
337
|
+
const _REC = "RecommendationEvaluationConfig";
|
|
338
|
+
const _REL = "RecommendationEvaluatorList";
|
|
339
|
+
const _RER = "RecommendationEvaluatorReference";
|
|
267
340
|
const _RL = "ResourceLocation";
|
|
268
341
|
const _RMR = "RetrieveMemoryRecords";
|
|
269
342
|
const _RMRI = "RetrieveMemoryRecordsInput";
|
|
270
343
|
const _RMRO = "RetrieveMemoryRecordsOutput";
|
|
271
344
|
const _RNFE = "ResourceNotFoundException";
|
|
345
|
+
const _RR = "RecommendationResult";
|
|
346
|
+
const _RRCB = "RecommendationResultConfigurationBundle";
|
|
272
347
|
const _RRS = "RegistryRecordSummary";
|
|
273
348
|
const _RRSL = "RegistryRecordSummaryList";
|
|
274
349
|
const _RS = "ResponseStream";
|
|
350
|
+
const _RSL = "RecommendationSummaryList";
|
|
351
|
+
const _RSe = "RecommendationSummary";
|
|
275
352
|
const _S = "State";
|
|
276
353
|
const _SA = "ScreenshotArguments";
|
|
354
|
+
const _SBE = "StartBatchEvaluation";
|
|
355
|
+
const _SBER = "StartBatchEvaluationRequest";
|
|
356
|
+
const _SBERt = "StartBatchEvaluationResponse";
|
|
357
|
+
const _SBERto = "StopBatchEvaluationRequest";
|
|
358
|
+
const _SBERtop = "StopBatchEvaluationResponse";
|
|
359
|
+
const _SBEt = "StopBatchEvaluation";
|
|
277
360
|
const _SBS = "StartBrowserSession";
|
|
278
361
|
const _SBSP = "SaveBrowserSessionProfile";
|
|
279
362
|
const _SBSPR = "SaveBrowserSessionProfileRequest";
|
|
@@ -295,6 +378,7 @@ const _SD = "ServerDefinition";
|
|
|
295
378
|
const _SDk = "SkillDefinition";
|
|
296
379
|
const _SE = "ServiceException";
|
|
297
380
|
const _SF = "SessionFilter";
|
|
381
|
+
const _SFC = "SessionFilterConfig";
|
|
298
382
|
const _SJ = "SensitiveJson";
|
|
299
383
|
const _SL = "S3Location";
|
|
300
384
|
const _SMD = "SkillMdDefinition";
|
|
@@ -302,14 +386,24 @@ const _SMEJ = "StartMemoryExtractionJob";
|
|
|
302
386
|
const _SMEJI = "StartMemoryExtractionJobInput";
|
|
303
387
|
const _SMEJO = "StartMemoryExtractionJobOutput";
|
|
304
388
|
const _SML = "SecretsManagerLocation";
|
|
389
|
+
const _SMLe = "SessionMetadataList";
|
|
390
|
+
const _SMS = "SessionMetadataShape";
|
|
391
|
+
const _SPC = "SystemPromptConfig";
|
|
392
|
+
const _SPCB = "SystemPromptConfigurationBundle";
|
|
393
|
+
const _SPRC = "SystemPromptRecommendationConfig";
|
|
394
|
+
const _SPRR = "SystemPromptRecommendationResult";
|
|
395
|
+
const _SPT = "SystemPromptText";
|
|
305
396
|
const _SQEE = "ServiceQuotaExceededException";
|
|
306
397
|
const _SR = "ScreenshotResult";
|
|
307
|
-
const _SRR = "
|
|
398
|
+
const _SRR = "StartRecommendationRequest";
|
|
308
399
|
const _SRRR = "SearchRegistryRecordsRequest";
|
|
309
400
|
const _SRRRe = "SearchRegistryRecordsResponse";
|
|
401
|
+
const _SRRe = "SearchRegistryRecords";
|
|
402
|
+
const _SRRt = "StartRecommendationResponse";
|
|
310
403
|
const _SRS = "StopRuntimeSession";
|
|
311
404
|
const _SRSR = "StopRuntimeSessionRequest";
|
|
312
405
|
const _SRSRt = "StopRuntimeSessionResponse";
|
|
406
|
+
const _SRt = "StartRecommendation";
|
|
313
407
|
const _SS = "SensitiveString";
|
|
314
408
|
const _SSL = "SessionSummaryList";
|
|
315
409
|
const _SSe = "SessionSummary";
|
|
@@ -318,20 +412,40 @@ const _SU = "StreamUpdate";
|
|
|
318
412
|
const _Sp = "Spans";
|
|
319
413
|
const _TA = "ToolArguments";
|
|
320
414
|
const _TD = "ToolsDefinition";
|
|
415
|
+
const _TDC = "ToolDescriptionConfig";
|
|
416
|
+
const _TDCB = "ToolDescriptionConfigurationBundle";
|
|
417
|
+
const _TDI = "ToolDescriptionInput";
|
|
418
|
+
const _TDL = "ToolDescriptionList";
|
|
419
|
+
const _TDO = "ToolDescriptionOutput";
|
|
420
|
+
const _TDRC = "ToolDescriptionRecommendationConfig";
|
|
421
|
+
const _TDRL = "ToolDescriptionResultList";
|
|
422
|
+
const _TDRR = "ToolDescriptionRecommendationResult";
|
|
423
|
+
const _TDS = "ToolDescriptionSource";
|
|
424
|
+
const _TDT = "ToolDescriptionText";
|
|
425
|
+
const _TDTI = "ToolDescriptionTextInput";
|
|
321
426
|
const _TE = "ThrottledException";
|
|
322
427
|
const _TEh = "ThrottlingException";
|
|
428
|
+
const _TR = "TargetRef";
|
|
323
429
|
const _TRSC = "ToolResultStructuredContent";
|
|
324
430
|
const _TU = "TokenUsage";
|
|
431
|
+
const _UABT = "UpdateABTest";
|
|
432
|
+
const _UABTR = "UpdateABTestRequest";
|
|
433
|
+
const _UABTRp = "UpdateABTestResponse";
|
|
325
434
|
const _UBS = "UpdateBrowserStream";
|
|
326
435
|
const _UBSR = "UpdateBrowserStreamRequest";
|
|
327
436
|
const _UBSRp = "UpdateBrowserStreamResponse";
|
|
328
437
|
const _UE = "UnauthorizedException";
|
|
329
438
|
const _UI = "UserIdentifier";
|
|
330
439
|
const _UTT = "UserTokenType";
|
|
440
|
+
const _V = "Variant";
|
|
441
|
+
const _VC = "VariantConfiguration";
|
|
331
442
|
const _VE = "ValidationException";
|
|
332
443
|
const _VEF = "ValidationExceptionField";
|
|
333
444
|
const _VEFL = "ValidationExceptionFieldList";
|
|
445
|
+
const _VL = "VariantList";
|
|
334
446
|
const _VP = "ViewPort";
|
|
447
|
+
const _VR = "VariantResult";
|
|
448
|
+
const _VRL = "VariantResultList";
|
|
335
449
|
const _WITT = "WorkloadIdentityTokenType";
|
|
336
450
|
const _XABARSI = "X-Amzn-Bedrock-AgentCore-Runtime-Session-Id";
|
|
337
451
|
const _XABARUI = "X-Amzn-Bedrock-AgentCore-Runtime-User-Id";
|
|
@@ -341,6 +455,7 @@ const _aC = "agentCard";
|
|
|
341
455
|
const _aCB = "agentCoreBrowser";
|
|
342
456
|
const _aCCI = "agentCoreCodeInterpreter";
|
|
343
457
|
const _aCG = "agentCoreGateway";
|
|
458
|
+
const _aCb = "absoluteChange";
|
|
344
459
|
const _aDE = "accessDeniedException";
|
|
345
460
|
const _aI = "actorId";
|
|
346
461
|
const _aIc = "accountId";
|
|
@@ -352,7 +467,13 @@ const _aS = "automationStream";
|
|
|
352
467
|
const _aSU = "automationStreamUpdate";
|
|
353
468
|
const _aSc = "actorSummaries";
|
|
354
469
|
const _aSg = "agentSkills";
|
|
355
|
-
const
|
|
470
|
+
const _aSv = "averageScore";
|
|
471
|
+
const _aT = "analysisTimestamp";
|
|
472
|
+
const _aTA = "abTestArn";
|
|
473
|
+
const _aTI = "abTestId";
|
|
474
|
+
const _aTb = "abTests";
|
|
475
|
+
const _aTc = "accessToken";
|
|
476
|
+
const _aTg = "agentTraces";
|
|
356
477
|
const _aTl = "allowedTools";
|
|
357
478
|
const _aU = "authorizationUrl";
|
|
358
479
|
const _ac = "accept";
|
|
@@ -360,10 +481,17 @@ const _act = "action";
|
|
|
360
481
|
const _ar = "arguments";
|
|
361
482
|
const _as = "assertions";
|
|
362
483
|
const _b = "branch";
|
|
363
|
-
const _bA = "
|
|
484
|
+
const _bA = "bundleArn";
|
|
364
485
|
const _bAa = "basicAuth";
|
|
486
|
+
const _bAr = "browserArn";
|
|
487
|
+
const _bE = "batchEvaluations";
|
|
488
|
+
const _bEA = "batchEvaluationArn";
|
|
489
|
+
const _bEI = "batchEvaluationId";
|
|
490
|
+
const _bEN = "batchEvaluationName";
|
|
365
491
|
const _bI = "browserIdentifier";
|
|
366
492
|
const _bMC = "bedrockModelConfig";
|
|
493
|
+
const _bV = "bundleVersion";
|
|
494
|
+
const _bVo = "booleanValue";
|
|
367
495
|
const _ba = "baggage";
|
|
368
496
|
const _bl = "blob";
|
|
369
497
|
const _bo = "body";
|
|
@@ -372,6 +500,7 @@ const _buc = "bucket";
|
|
|
372
500
|
const _by = "bypass";
|
|
373
501
|
const _c = "client";
|
|
374
502
|
const _cA = "createdAt";
|
|
503
|
+
const _cB = "configurationBundle";
|
|
375
504
|
const _cBD = "contentBlockDelta";
|
|
376
505
|
const _cBI = "contentBlockIndex";
|
|
377
506
|
const _cBS = "contentBlockStart";
|
|
@@ -380,16 +509,22 @@ const _cC = "clickCount";
|
|
|
380
509
|
const _cCl = "clearContext";
|
|
381
510
|
const _cD = "contentDelta";
|
|
382
511
|
const _cE = "conflictException";
|
|
512
|
+
const _cI = "confidenceInterval";
|
|
383
513
|
const _cIA = "codeInterpreterArn";
|
|
384
514
|
const _cII = "codeInterpreterIdentifier";
|
|
515
|
+
const _cL = "cloudwatchLogs";
|
|
385
516
|
const _cP = "customParameters";
|
|
517
|
+
const _cRI = "currentRunId";
|
|
386
518
|
const _cRIT = "cacheReadInputTokens";
|
|
387
|
-
const _cS = "
|
|
519
|
+
const _cS = "controlStats";
|
|
388
520
|
const _cSo = "contentStart";
|
|
389
521
|
const _cSon = "contentStop";
|
|
522
|
+
const _cSu = "customState";
|
|
390
523
|
const _cT = "clientToken";
|
|
391
524
|
const _cTo = "contentType";
|
|
525
|
+
const _cWC = "cloudWatchConfig";
|
|
392
526
|
const _cWIT = "cacheWriteInputTokens";
|
|
527
|
+
const _cWL = "cloudWatchLogs";
|
|
393
528
|
const _ce = "certificates";
|
|
394
529
|
const _ch = "chunk";
|
|
395
530
|
const _co = "content";
|
|
@@ -400,53 +535,67 @@ const _conf = "config";
|
|
|
400
535
|
const _conv = "conversational";
|
|
401
536
|
const _cr = "credentials";
|
|
402
537
|
const _cu = "custom";
|
|
403
|
-
const _d = "
|
|
538
|
+
const _d = "description";
|
|
404
539
|
const _dP = "domainPatterns";
|
|
405
540
|
const _dPi = "directoryPath";
|
|
406
541
|
const _dRU = "defaultReturnUrl";
|
|
542
|
+
const _dSC = "dataSourceConfig";
|
|
407
543
|
const _dT = "descriptorType";
|
|
544
|
+
const _dV = "doubleValue";
|
|
408
545
|
const _dX = "deltaX";
|
|
409
546
|
const _dY = "deltaY";
|
|
410
|
-
const
|
|
411
|
-
const
|
|
547
|
+
const _da = "data";
|
|
548
|
+
const _de = "delta";
|
|
412
549
|
const _des = "descriptors";
|
|
413
550
|
const _e = "error";
|
|
414
551
|
const _eA = "evaluatorArn";
|
|
415
552
|
const _eC = "exitCode";
|
|
416
553
|
const _eCr = "errorCode";
|
|
554
|
+
const _eCv = "evaluationConfig";
|
|
555
|
+
const _eD = "errorDetails";
|
|
417
556
|
const _eF = "eventFilter";
|
|
418
557
|
const _eI = "eventId";
|
|
419
558
|
const _eIv = "evaluatorId";
|
|
420
559
|
const _eIva = "evaluationInput";
|
|
421
560
|
const _eJ = "extractionJob";
|
|
422
|
-
const _eM = "
|
|
561
|
+
const _eM = "evaluatorMetrics";
|
|
562
|
+
const _eMr = "errorMessage";
|
|
423
563
|
const _eMv = "eventMetadata";
|
|
564
|
+
const _eMva = "evaluationMetadata";
|
|
424
565
|
const _eN = "evaluatorName";
|
|
566
|
+
const _eOC = "enableOnCreate";
|
|
425
567
|
const _eP = "enterprisePolicies";
|
|
426
568
|
const _ePx = "externalProxy";
|
|
427
569
|
const _eR = "evaluationResults";
|
|
428
570
|
const _eRI = "evaluationReferenceInputs";
|
|
429
571
|
const _eRx = "expectedResponse";
|
|
430
|
-
const
|
|
431
|
-
const
|
|
572
|
+
const _eS = "executionStatus";
|
|
573
|
+
const _eSv = "evaluatorSummaries";
|
|
574
|
+
const _eT = "endTime";
|
|
575
|
+
const _eTv = "eventTimestamp";
|
|
576
|
+
const _eTva = "evaluationTarget";
|
|
432
577
|
const _eTx = "expectedTrajectory";
|
|
433
578
|
const _eTxe = "executionTime";
|
|
434
579
|
const _eX = "endX";
|
|
435
580
|
const _eY = "endY";
|
|
436
|
-
const _ev = "
|
|
437
|
-
const _eve = "
|
|
581
|
+
const _ev = "evaluators";
|
|
582
|
+
const _eve = "event";
|
|
583
|
+
const _even = "events";
|
|
438
584
|
const _ex = "explanation";
|
|
439
585
|
const _ext = "extensions";
|
|
440
|
-
const _f = "
|
|
586
|
+
const _f = "filters";
|
|
441
587
|
const _fA = "forceAuthentication";
|
|
588
|
+
const _fC = "filterConfig";
|
|
442
589
|
const _fL = "fieldList";
|
|
443
590
|
const _fR = "failedRecords";
|
|
444
591
|
const _fRa = "failureReason";
|
|
445
|
-
const _fi = "
|
|
592
|
+
const _fi = "filter";
|
|
446
593
|
const _fo = "format";
|
|
447
594
|
const _gA = "gatewayArn";
|
|
595
|
+
const _gF = "gatewayFilter";
|
|
448
596
|
const _gMC = "geminiModelConfig";
|
|
449
597
|
const _gT = "grantType";
|
|
598
|
+
const _gTr = "groundTruth";
|
|
450
599
|
const _h = "headers";
|
|
451
600
|
const _hA = "harnessArn";
|
|
452
601
|
const _hE = "httpError";
|
|
@@ -463,8 +612,10 @@ const _iPB = "includeParentBranches";
|
|
|
463
612
|
const _iRIF = "ignoredReferenceInputFields";
|
|
464
613
|
const _iS = "inputSchema";
|
|
465
614
|
const _iSE = "internalServerException";
|
|
615
|
+
const _iSs = "isSignificant";
|
|
466
616
|
const _iT = "idempotencyToken";
|
|
467
617
|
const _iTn = "inputTokens";
|
|
618
|
+
const _in = "inline";
|
|
468
619
|
const _it = "items";
|
|
469
620
|
const _j = "jobs";
|
|
470
621
|
const _jI = "jobId";
|
|
@@ -476,15 +627,21 @@ const _kS = "keyShortcut";
|
|
|
476
627
|
const _kT = "keyType";
|
|
477
628
|
const _ke = "keys";
|
|
478
629
|
const _l = "location";
|
|
630
|
+
const _lGA = "logGroupArns";
|
|
631
|
+
const _lGN = "logGroupNames";
|
|
632
|
+
const _lGNo = "logGroupName";
|
|
479
633
|
const _lM = "latencyMs";
|
|
634
|
+
const _lSN = "logStreamName";
|
|
480
635
|
const _lUA = "lastUpdatedAt";
|
|
481
636
|
const _lVS = "liveViewStream";
|
|
482
637
|
const _la = "label";
|
|
483
638
|
const _lan = "language";
|
|
484
639
|
const _le = "left";
|
|
640
|
+
const _lo = "lower";
|
|
485
641
|
const _m = "message";
|
|
486
642
|
const _mC = "mouseClick";
|
|
487
643
|
const _mD = "mouseDrag";
|
|
644
|
+
const _mDEA = "maxDurationExpiresAt";
|
|
488
645
|
const _mF = "metadataFilters";
|
|
489
646
|
const _mI = "memoryId";
|
|
490
647
|
const _mIa = "maxIterations";
|
|
@@ -507,11 +664,16 @@ const _mT = "mimeType";
|
|
|
507
664
|
const _mTa = "maxTokens";
|
|
508
665
|
const _mV = "metadataValue";
|
|
509
666
|
const _mc = "mcp";
|
|
510
|
-
const _me = "
|
|
667
|
+
const _me = "mean";
|
|
511
668
|
const _mes = "messages";
|
|
512
|
-
const _met = "
|
|
669
|
+
const _met = "metadata";
|
|
670
|
+
const _metr = "metrics";
|
|
513
671
|
const _mo = "model";
|
|
514
672
|
const _n = "name";
|
|
673
|
+
const _nOSC = "numberOfSessionsCompleted";
|
|
674
|
+
const _nOSF = "numberOfSessionsFailed";
|
|
675
|
+
const _nOSI = "numberOfSessionsIgnored";
|
|
676
|
+
const _nOSIP = "numberOfSessionsInProgress";
|
|
515
677
|
const _nP = "namespacePath";
|
|
516
678
|
const _nT = "nextToken";
|
|
517
679
|
const _na = "namespace";
|
|
@@ -520,72 +682,99 @@ const _no = "none";
|
|
|
520
682
|
const _o = "operator";
|
|
521
683
|
const _oA = "outboundAuth";
|
|
522
684
|
const _oAMC = "openAiModelConfig";
|
|
685
|
+
const _oC = "outputConfig";
|
|
686
|
+
const _oECA = "onlineEvaluationConfigArn";
|
|
523
687
|
const _oF = "oauth2Flow";
|
|
524
688
|
const _oT = "outputTokens";
|
|
525
689
|
const _oa = "oauth";
|
|
526
690
|
const _p = "payload";
|
|
527
691
|
const _pA = "providerArn";
|
|
528
692
|
const _pC = "profileConfiguration";
|
|
693
|
+
const _pCe = "percentChange";
|
|
529
694
|
const _pCr = "proxyConfiguration";
|
|
530
695
|
const _pI = "profileIdentifier";
|
|
531
696
|
const _pV = "protocolVersion";
|
|
697
|
+
const _pVOEC = "perVariantOnlineEvaluationConfig";
|
|
698
|
+
const _pVa = "pValue";
|
|
532
699
|
const _pa = "path";
|
|
533
700
|
const _pat = "paths";
|
|
534
701
|
const _po = "port";
|
|
535
702
|
const _pr = "presses";
|
|
536
703
|
const _pre = "prefix";
|
|
537
704
|
const _pro = "proxies";
|
|
705
|
+
const _prom = "prompt";
|
|
538
706
|
const _q = "qualifier";
|
|
539
707
|
const _r = "reason";
|
|
540
|
-
const _rA = "
|
|
541
|
-
const _rAe = "
|
|
542
|
-
const
|
|
708
|
+
const _rA = "roleArn";
|
|
709
|
+
const _rAe = "recommendationArn";
|
|
710
|
+
const _rAec = "recordArn";
|
|
711
|
+
const _rAeg = "registryArn";
|
|
712
|
+
const _rC = "recommendationConfig";
|
|
543
713
|
const _rCE = "runtimeClientError";
|
|
544
714
|
const _rCPN = "resourceCredentialProviderName";
|
|
545
|
-
const _rCe = "
|
|
715
|
+
const _rCe = "reasoningContent";
|
|
716
|
+
const _rCed = "redactedContent";
|
|
546
717
|
const _rEI = "rootEventId";
|
|
547
|
-
const _rI = "
|
|
548
|
-
const _rIe = "
|
|
718
|
+
const _rI = "recommendationId";
|
|
719
|
+
const _rIe = "requestIdentifier";
|
|
720
|
+
const _rIec = "recordId";
|
|
549
721
|
const _rIeg = "registryIds";
|
|
550
722
|
const _rM = "remoteMcp";
|
|
551
723
|
const _rNFE = "resourceNotFoundException";
|
|
552
724
|
const _rORU = "resourceOauth2ReturnUrl";
|
|
553
|
-
const _rR = "
|
|
725
|
+
const _rR = "recommendationResult";
|
|
726
|
+
const _rRe = "registryRecords";
|
|
727
|
+
const _rS = "recommendationSummaries";
|
|
554
728
|
const _rSI = "runtimeSessionId";
|
|
729
|
+
const _rSP = "recommendedSystemPrompt";
|
|
555
730
|
const _rT = "reasoningText";
|
|
731
|
+
const _rTD = "recommendedToolDescription";
|
|
556
732
|
const _rUI = "runtimeUserId";
|
|
557
733
|
const _re = "records";
|
|
558
734
|
const _res = "resource";
|
|
559
735
|
const _resp = "response";
|
|
560
|
-
const _resu = "
|
|
736
|
+
const _resu = "results";
|
|
737
|
+
const _resul = "result";
|
|
561
738
|
const _ri = "right";
|
|
562
739
|
const _ro = "role";
|
|
563
|
-
const _ru = "
|
|
740
|
+
const _ru = "rule";
|
|
741
|
+
const _run = "runtime";
|
|
564
742
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockagentcore";
|
|
565
743
|
const _sA = "secretArn";
|
|
744
|
+
const _sAt = "startedAt";
|
|
745
|
+
const _sAto = "stoppedAt";
|
|
566
746
|
const _sC = "structuredContent";
|
|
567
747
|
const _sCe = "searchCriteria";
|
|
568
748
|
const _sCp = "spanContext";
|
|
569
749
|
const _sCt = "statusCode";
|
|
570
750
|
const _sD = "skillDefinition";
|
|
571
751
|
const _sE = "streamEndpoint";
|
|
752
|
+
const _sF = "statusFilter";
|
|
572
753
|
const _sI = "sessionId";
|
|
754
|
+
const _sIe = "sessionIds";
|
|
573
755
|
const _sIp = "spanId";
|
|
574
756
|
const _sIpa = "spanIds";
|
|
575
757
|
const _sIt = "strategyId";
|
|
576
758
|
const _sM = "skillMd";
|
|
577
759
|
const _sMe = "secretsManager";
|
|
578
|
-
const
|
|
760
|
+
const _sMes = "sessionMetadata";
|
|
761
|
+
const _sN = "serviceNames";
|
|
762
|
+
const _sNe = "serverName";
|
|
579
763
|
const _sP = "systemPrompt";
|
|
764
|
+
const _sPJP = "systemPromptJsonPath";
|
|
765
|
+
const _sPRC = "systemPromptRecommendationConfig";
|
|
766
|
+
const _sPRR = "systemPromptRecommendationResult";
|
|
580
767
|
const _sQ = "searchQuery";
|
|
581
768
|
const _sQEE = "serviceQuotaExceededException";
|
|
582
769
|
const _sR = "successfulRecords";
|
|
583
770
|
const _sRA = "sessionReplayArtifact";
|
|
584
771
|
const _sRt = "stopReason";
|
|
585
772
|
const _sS = "streamStatus";
|
|
773
|
+
const _sSa = "sampleSize";
|
|
586
774
|
const _sSe = "sessionStatus";
|
|
587
775
|
const _sSes = "sessionSummaries";
|
|
588
776
|
const _sSess = "sessionSpans";
|
|
777
|
+
const _sT = "startTime";
|
|
589
778
|
const _sTS = "sessionTimeoutSeconds";
|
|
590
779
|
const _sU = "sessionUri";
|
|
591
780
|
const _sUt = "streamUpdate";
|
|
@@ -605,27 +794,41 @@ const _sk = "skills";
|
|
|
605
794
|
const _st = "streaming";
|
|
606
795
|
const _sta = "status";
|
|
607
796
|
const _star = "start";
|
|
797
|
+
const _stat = "statistics";
|
|
608
798
|
const _std = "stdout";
|
|
609
799
|
const _stde = "stderr";
|
|
610
800
|
const _str = "streams";
|
|
611
801
|
const _stre = "stream";
|
|
612
802
|
const _t = "type";
|
|
613
|
-
const
|
|
803
|
+
const _tD = "toolDescription";
|
|
804
|
+
const _tDJP = "toolDescriptionJsonPath";
|
|
805
|
+
const _tDRC = "toolDescriptionRecommendationConfig";
|
|
806
|
+
const _tDRR = "toolDescriptionRecommendationResult";
|
|
807
|
+
const _tDT = "toolDescriptionText";
|
|
808
|
+
const _tE = "totalEvaluated";
|
|
809
|
+
const _tEh = "throttlingException";
|
|
810
|
+
const _tF = "totalFailed";
|
|
614
811
|
const _tI = "traceId";
|
|
615
812
|
const _tIa = "taskId";
|
|
616
813
|
const _tIr = "traceIds";
|
|
617
814
|
const _tK = "topK";
|
|
618
|
-
const _tN = "
|
|
619
|
-
const
|
|
815
|
+
const _tN = "toolName";
|
|
816
|
+
const _tNOS = "totalNumberOfSessions";
|
|
817
|
+
const _tNo = "toolNames";
|
|
818
|
+
const _tP = "targetPaths";
|
|
819
|
+
const _tPo = "topP";
|
|
620
820
|
const _tPr = "traceParent";
|
|
621
|
-
const _tR = "
|
|
821
|
+
const _tR = "timeRange";
|
|
822
|
+
const _tRo = "toolResult";
|
|
622
823
|
const _tS = "traceState";
|
|
824
|
+
const _tSI = "testScenarioId";
|
|
623
825
|
const _tSa = "taskStatus";
|
|
624
826
|
const _tSi = "timeoutSeconds";
|
|
625
827
|
const _tT = "totalTokens";
|
|
626
828
|
const _tU = "tokenUsage";
|
|
627
829
|
const _tUI = "toolUseId";
|
|
628
830
|
const _tUo = "toolUse";
|
|
831
|
+
const _ta = "target";
|
|
629
832
|
const _te = "text";
|
|
630
833
|
const _tem = "temperature";
|
|
631
834
|
const _ti = "timeout";
|
|
@@ -633,22 +836,29 @@ const _tim = "timestamp";
|
|
|
633
836
|
const _to = "tools";
|
|
634
837
|
const _tr = "traceparent";
|
|
635
838
|
const _tra = "tracestate";
|
|
636
|
-
const
|
|
839
|
+
const _tu = "turns";
|
|
840
|
+
const _u = "upper";
|
|
637
841
|
const _uA = "updatedAt";
|
|
638
842
|
const _uI = "userIdentifier";
|
|
639
843
|
const _uIs = "userId";
|
|
640
844
|
const _uT = "userToken";
|
|
641
|
-
const _ur = "
|
|
845
|
+
const _ur = "uri";
|
|
846
|
+
const _url = "url";
|
|
642
847
|
const _us = "usage";
|
|
643
848
|
const _v = "value";
|
|
849
|
+
const _vC = "variantConfiguration";
|
|
644
850
|
const _vE = "validationException";
|
|
645
851
|
const _vI = "versionId";
|
|
852
|
+
const _vN = "variantName";
|
|
646
853
|
const _vP = "viewPort";
|
|
854
|
+
const _vR = "variantResults";
|
|
855
|
+
const _va = "variants";
|
|
647
856
|
const _ve = "version";
|
|
648
|
-
const _w = "
|
|
857
|
+
const _w = "weight";
|
|
649
858
|
const _wAT = "workloadAccessToken";
|
|
650
859
|
const _wIT = "workloadIdentityToken";
|
|
651
860
|
const _wN = "workloadName";
|
|
861
|
+
const _wi = "width";
|
|
652
862
|
const _x = "x";
|
|
653
863
|
const _xabsi = "x-amzn-browser-session-id";
|
|
654
864
|
const _xacisi = "x-amzn-code-interpreter-session-id";
|
|
@@ -765,6 +975,8 @@ var SensitiveJson = [0, n0, _SJ, 8, 15];
|
|
|
765
975
|
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
766
976
|
var SensitiveText = [0, n0, _ST, 8, 0];
|
|
767
977
|
var State = [0, n0, _S, 8, 0];
|
|
978
|
+
var SystemPromptText = [0, n0, _SPT, 8, 0];
|
|
979
|
+
var ToolDescriptionText = [0, n0, _TDT, 8, 0];
|
|
768
980
|
var UserTokenType = [0, n0, _UTT, 8, 0];
|
|
769
981
|
var WorkloadIdentityTokenType = [0, n0, _WITT, 8, 0];
|
|
770
982
|
export var A2aDescriptor$ = [3, n0, _AD,
|
|
@@ -772,6 +984,16 @@ export var A2aDescriptor$ = [3, n0, _AD,
|
|
|
772
984
|
[_aC],
|
|
773
985
|
[() => AgentCardDefinition$], 1
|
|
774
986
|
];
|
|
987
|
+
export var ABTestResults$ = [3, n0, _ABTR,
|
|
988
|
+
0,
|
|
989
|
+
[_eM, _aT],
|
|
990
|
+
[() => EvaluatorMetricList, 4], 1
|
|
991
|
+
];
|
|
992
|
+
export var ABTestSummary$ = [3, n0, _ABTS,
|
|
993
|
+
0,
|
|
994
|
+
[_aTI, _aTA, _n, _sta, _eS, _cA, _uA, _d, _gA],
|
|
995
|
+
[0, 0, 0, 0, 0, 4, 4, 0, 0], 7
|
|
996
|
+
];
|
|
775
997
|
export var ActorSummary$ = [3, n0, _AS,
|
|
776
998
|
0,
|
|
777
999
|
[_aI],
|
|
@@ -822,6 +1044,11 @@ export var BatchDeleteMemoryRecordsOutput$ = [3, n0, _BDMRO,
|
|
|
822
1044
|
[_sR, _fR],
|
|
823
1045
|
[() => MemoryRecordsOutputList, () => MemoryRecordsOutputList], 2
|
|
824
1046
|
];
|
|
1047
|
+
export var BatchEvaluationSummary$ = [3, n0, _BES,
|
|
1048
|
+
0,
|
|
1049
|
+
[_bEI, _bEA, _bEN, _sta, _cA, _d, _ev, _eR, _eD, _uA],
|
|
1050
|
+
[0, 0, 0, 0, 5, 0, () => EvaluatorList, () => EvaluationJobResults$, 64 | 0, 5], 5
|
|
1051
|
+
];
|
|
825
1052
|
export var BatchUpdateMemoryRecordsInput$ = [3, n0, _BUMRI,
|
|
826
1053
|
0,
|
|
827
1054
|
[_mI, _re],
|
|
@@ -872,6 +1099,36 @@ export var Certificate$ = [3, n0, _C,
|
|
|
872
1099
|
[_l],
|
|
873
1100
|
[() => CertificateLocation$], 1
|
|
874
1101
|
];
|
|
1102
|
+
export var CloudWatchFilterConfig$ = [3, n0, _CWFC,
|
|
1103
|
+
0,
|
|
1104
|
+
[_sIe, _tR],
|
|
1105
|
+
[64 | 0, () => SessionFilterConfig$]
|
|
1106
|
+
];
|
|
1107
|
+
export var CloudWatchLogsFilter$ = [3, n0, _CWLF,
|
|
1108
|
+
0,
|
|
1109
|
+
[_k, _o, _v],
|
|
1110
|
+
[0, 0, () => FilterValue$], 3
|
|
1111
|
+
];
|
|
1112
|
+
export var CloudWatchLogsRule$ = [3, n0, _CWLR,
|
|
1113
|
+
0,
|
|
1114
|
+
[_f],
|
|
1115
|
+
[() => CloudWatchLogsFilterList]
|
|
1116
|
+
];
|
|
1117
|
+
export var CloudWatchLogsSource$ = [3, n0, _CWLS,
|
|
1118
|
+
0,
|
|
1119
|
+
[_sN, _lGN, _fC],
|
|
1120
|
+
[64 | 0, 64 | 0, () => CloudWatchFilterConfig$], 2
|
|
1121
|
+
];
|
|
1122
|
+
export var CloudWatchLogsTraceConfig$ = [3, n0, _CWLTC,
|
|
1123
|
+
0,
|
|
1124
|
+
[_lGA, _sN, _sT, _eT, _ru],
|
|
1125
|
+
[64 | 0, 64 | 0, 5, 5, () => CloudWatchLogsRule$], 4
|
|
1126
|
+
];
|
|
1127
|
+
export var CloudWatchOutputConfig$ = [3, n0, _CWOC,
|
|
1128
|
+
0,
|
|
1129
|
+
[_lGNo, _lSN],
|
|
1130
|
+
[0, 0], 2
|
|
1131
|
+
];
|
|
875
1132
|
export var CodeInterpreterResult$ = [3, n0, _CIR,
|
|
876
1133
|
0,
|
|
877
1134
|
[_co, _sC, _iE],
|
|
@@ -892,9 +1149,24 @@ export var CompleteResourceTokenAuthResponse$ = [3, n0, _CRTARo,
|
|
|
892
1149
|
[],
|
|
893
1150
|
[]
|
|
894
1151
|
];
|
|
1152
|
+
export var ConfidenceInterval$ = [3, n0, _CI,
|
|
1153
|
+
0,
|
|
1154
|
+
[_lo, _u],
|
|
1155
|
+
[1, 1]
|
|
1156
|
+
];
|
|
1157
|
+
export var ConfigurationBundleRef$ = [3, n0, _CBR,
|
|
1158
|
+
0,
|
|
1159
|
+
[_bA, _bV],
|
|
1160
|
+
[0, 0], 2
|
|
1161
|
+
];
|
|
1162
|
+
export var ConfigurationBundleToolEntry$ = [3, n0, _CBTE,
|
|
1163
|
+
0,
|
|
1164
|
+
[_tN, _tDJP],
|
|
1165
|
+
[0, 0], 2
|
|
1166
|
+
];
|
|
895
1167
|
export var ContentBlock$ = [3, n0, _CB,
|
|
896
1168
|
0,
|
|
897
|
-
[_t, _te,
|
|
1169
|
+
[_t, _te, _da, _mT, _ur, _n, _d, _si, _res],
|
|
898
1170
|
[0, 0, 21, 0, 0, 0, 0, 1, () => ResourceContent$], 1
|
|
899
1171
|
];
|
|
900
1172
|
export var ContentDeltaEvent$ = [3, n0, _CDE,
|
|
@@ -912,19 +1184,34 @@ export var ContentStopEvent$ = [3, n0, _CSEo,
|
|
|
912
1184
|
[_eC, _sta],
|
|
913
1185
|
[1, 0], 2
|
|
914
1186
|
];
|
|
1187
|
+
export var ControlStats$ = [3, n0, _CS,
|
|
1188
|
+
0,
|
|
1189
|
+
[_vN, _sSa, _me],
|
|
1190
|
+
[0, 1, 1], 3
|
|
1191
|
+
];
|
|
915
1192
|
export var Conversational$ = [3, n0, _Co,
|
|
916
1193
|
0,
|
|
917
1194
|
[_co, _ro],
|
|
918
1195
|
[[() => Content$, 0], 0], 2
|
|
919
1196
|
];
|
|
1197
|
+
export var CreateABTestRequest$ = [3, n0, _CABTR,
|
|
1198
|
+
0,
|
|
1199
|
+
[_n, _gA, _va, _eCv, _rA, _d, _gF, _eOC, _cT],
|
|
1200
|
+
[0, 0, () => VariantList, () => ABTestEvaluationConfig$, 0, 0, () => GatewayFilter$, 2, [0, 4]], 5
|
|
1201
|
+
];
|
|
1202
|
+
export var CreateABTestResponse$ = [3, n0, _CABTRr,
|
|
1203
|
+
0,
|
|
1204
|
+
[_aTI, _aTA, _sta, _eS, _cA, _n],
|
|
1205
|
+
[0, 0, 0, 0, 4, 0], 5
|
|
1206
|
+
];
|
|
920
1207
|
export var CreateEventInput$ = [3, n0, _CEI,
|
|
921
1208
|
0,
|
|
922
|
-
[_mI, _aI,
|
|
1209
|
+
[_mI, _aI, _eTv, _p, _sI, _b, _cT, _met],
|
|
923
1210
|
[[0, 1], 0, 4, [() => PayloadTypeList, 0], 0, () => Branch$, [0, 4], () => MetadataMap], 4
|
|
924
1211
|
];
|
|
925
1212
|
export var CreateEventOutput$ = [3, n0, _CEO,
|
|
926
1213
|
0,
|
|
927
|
-
[
|
|
1214
|
+
[_eve],
|
|
928
1215
|
[[() => Event$, 0]], 1
|
|
929
1216
|
];
|
|
930
1217
|
export var CustomDescriptor$ = [3, n0, _CD,
|
|
@@ -932,6 +1219,26 @@ export var CustomDescriptor$ = [3, n0, _CD,
|
|
|
932
1219
|
[_iC],
|
|
933
1220
|
[0]
|
|
934
1221
|
];
|
|
1222
|
+
export var DeleteABTestRequest$ = [3, n0, _DABTR,
|
|
1223
|
+
0,
|
|
1224
|
+
[_aTI],
|
|
1225
|
+
[[0, 1]], 1
|
|
1226
|
+
];
|
|
1227
|
+
export var DeleteABTestResponse$ = [3, n0, _DABTRe,
|
|
1228
|
+
0,
|
|
1229
|
+
[_aTI, _aTA, _sta],
|
|
1230
|
+
[0, 0, 0], 3
|
|
1231
|
+
];
|
|
1232
|
+
export var DeleteBatchEvaluationRequest$ = [3, n0, _DBER,
|
|
1233
|
+
0,
|
|
1234
|
+
[_bEI],
|
|
1235
|
+
[[0, 1]], 1
|
|
1236
|
+
];
|
|
1237
|
+
export var DeleteBatchEvaluationResponse$ = [3, n0, _DBERe,
|
|
1238
|
+
0,
|
|
1239
|
+
[_bEI, _bEA, _sta],
|
|
1240
|
+
[0, 0, 0], 3
|
|
1241
|
+
];
|
|
935
1242
|
export var DeleteEventInput$ = [3, n0, _DEI,
|
|
936
1243
|
0,
|
|
937
1244
|
[_mI, _sI, _eI, _aI],
|
|
@@ -952,6 +1259,16 @@ export var DeleteMemoryRecordOutput$ = [3, n0, _DMRO,
|
|
|
952
1259
|
[_mRI],
|
|
953
1260
|
[0], 1
|
|
954
1261
|
];
|
|
1262
|
+
export var DeleteRecommendationRequest$ = [3, n0, _DRR,
|
|
1263
|
+
0,
|
|
1264
|
+
[_rI],
|
|
1265
|
+
[[0, 1]], 1
|
|
1266
|
+
];
|
|
1267
|
+
export var DeleteRecommendationResponse$ = [3, n0, _DRRe,
|
|
1268
|
+
0,
|
|
1269
|
+
[_rI, _sta],
|
|
1270
|
+
[0, 0], 2
|
|
1271
|
+
];
|
|
955
1272
|
export var Descriptors$ = [3, n0, _De,
|
|
956
1273
|
0,
|
|
957
1274
|
[_mc, _a, _cu, _aSg],
|
|
@@ -959,7 +1276,7 @@ export var Descriptors$ = [3, n0, _De,
|
|
|
959
1276
|
];
|
|
960
1277
|
export var EvaluateRequest$ = [3, n0, _ER,
|
|
961
1278
|
0,
|
|
962
|
-
[_eIv, _eIva,
|
|
1279
|
+
[_eIv, _eIva, _eTva, _eRI],
|
|
963
1280
|
[[0, 1], [() => EvaluationInput$, 0], () => EvaluationTarget$, [() => EvaluationReferenceInputs, 0]], 2
|
|
964
1281
|
];
|
|
965
1282
|
export var EvaluateResponse$ = [3, n0, _ERv,
|
|
@@ -969,9 +1286,14 @@ export var EvaluateResponse$ = [3, n0, _ERv,
|
|
|
969
1286
|
];
|
|
970
1287
|
export var EvaluationExpectedTrajectory$ = [3, n0, _EET,
|
|
971
1288
|
0,
|
|
972
|
-
[
|
|
1289
|
+
[_tNo],
|
|
973
1290
|
[64 | 0]
|
|
974
1291
|
];
|
|
1292
|
+
export var EvaluationJobResults$ = [3, n0, _EJR,
|
|
1293
|
+
0,
|
|
1294
|
+
[_nOSC, _nOSIP, _nOSF, _tNOS, _nOSI, _eSv],
|
|
1295
|
+
[1, 1, 1, 1, 1, () => EvaluatorSummaryList]
|
|
1296
|
+
];
|
|
975
1297
|
export var EvaluationReferenceInput$ = [3, n0, _ERI,
|
|
976
1298
|
0,
|
|
977
1299
|
[_con, _eRx, _as, _eTx],
|
|
@@ -979,12 +1301,32 @@ export var EvaluationReferenceInput$ = [3, n0, _ERI,
|
|
|
979
1301
|
];
|
|
980
1302
|
export var EvaluationResultContent$ = [3, n0, _ERC,
|
|
981
1303
|
0,
|
|
982
|
-
[_eA, _eIv, _eN, _con, _ex, _v, _la, _tU,
|
|
1304
|
+
[_eA, _eIv, _eN, _con, _ex, _v, _la, _tU, _eMr, _eCr, _iRIF],
|
|
983
1305
|
[0, 0, 0, () => Context$, [() => EvaluationExplanation, 0], 1, 0, () => TokenUsage$, 0, 0, 64 | 0], 4
|
|
984
1306
|
];
|
|
985
|
-
export var
|
|
1307
|
+
export var Evaluator$ = [3, n0, _E,
|
|
1308
|
+
0,
|
|
1309
|
+
[_eIv],
|
|
1310
|
+
[0], 1
|
|
1311
|
+
];
|
|
1312
|
+
export var EvaluatorMetric$ = [3, n0, _EM,
|
|
1313
|
+
0,
|
|
1314
|
+
[_eA, _cS, _vR],
|
|
1315
|
+
[0, () => ControlStats$, () => VariantResultList], 3
|
|
1316
|
+
];
|
|
1317
|
+
export var EvaluatorStatistics$ = [3, n0, _ES,
|
|
1318
|
+
0,
|
|
1319
|
+
[_aSv],
|
|
1320
|
+
[1]
|
|
1321
|
+
];
|
|
1322
|
+
export var EvaluatorSummary$ = [3, n0, _ESv,
|
|
986
1323
|
0,
|
|
987
|
-
[
|
|
1324
|
+
[_eIv, _stat, _tE, _tF],
|
|
1325
|
+
[0, () => EvaluatorStatistics$, 1, 1]
|
|
1326
|
+
];
|
|
1327
|
+
export var Event$ = [3, n0, _Ev,
|
|
1328
|
+
0,
|
|
1329
|
+
[_mI, _aI, _sI, _eI, _eTv, _p, _b, _met],
|
|
988
1330
|
[0, 0, 0, 0, 4, [() => PayloadTypeList, 0], () => Branch$, () => MetadataMap], 6
|
|
989
1331
|
];
|
|
990
1332
|
export var EventMetadataFilterExpression$ = [3, n0, _EMFE,
|
|
@@ -1017,6 +1359,21 @@ export var FilterInput$ = [3, n0, _FI,
|
|
|
1017
1359
|
[_b, _eMv],
|
|
1018
1360
|
[() => BranchFilter$, () => EventMetadataFilterList]
|
|
1019
1361
|
];
|
|
1362
|
+
export var GatewayFilter$ = [3, n0, _GF,
|
|
1363
|
+
0,
|
|
1364
|
+
[_tP],
|
|
1365
|
+
[64 | 0]
|
|
1366
|
+
];
|
|
1367
|
+
export var GetABTestRequest$ = [3, n0, _GABTR,
|
|
1368
|
+
0,
|
|
1369
|
+
[_aTI],
|
|
1370
|
+
[[0, 1]], 1
|
|
1371
|
+
];
|
|
1372
|
+
export var GetABTestResponse$ = [3, n0, _GABTRe,
|
|
1373
|
+
0,
|
|
1374
|
+
[_aTI, _aTA, _n, _sta, _eS, _gA, _va, _eCv, _cA, _uA, _d, _gF, _rA, _cRI, _eD, _sAt, _sAto, _mDEA, _resu],
|
|
1375
|
+
[0, 0, 0, 0, 0, 0, () => VariantList, () => ABTestEvaluationConfig$, 4, 4, 0, () => GatewayFilter$, 0, 0, 64 | 0, 4, 4, 4, () => ABTestResults$], 10
|
|
1376
|
+
];
|
|
1020
1377
|
export var GetAgentCardRequest$ = [3, n0, _GACR,
|
|
1021
1378
|
0,
|
|
1022
1379
|
[_aRA, _rSI, _q],
|
|
@@ -1027,6 +1384,16 @@ export var GetAgentCardResponse$ = [3, n0, _GACRe,
|
|
|
1027
1384
|
[_aC, _rSI, _sCt],
|
|
1028
1385
|
[[15, 16], [0, { [_hH]: _XABARSI }], [1, 32]], 1
|
|
1029
1386
|
];
|
|
1387
|
+
export var GetBatchEvaluationRequest$ = [3, n0, _GBER,
|
|
1388
|
+
0,
|
|
1389
|
+
[_bEI],
|
|
1390
|
+
[[0, 1]], 1
|
|
1391
|
+
];
|
|
1392
|
+
export var GetBatchEvaluationResponse$ = [3, n0, _GBERe,
|
|
1393
|
+
0,
|
|
1394
|
+
[_bEI, _bEA, _bEN, _sta, _cA, _ev, _dSC, _oC, _eR, _eD, _d, _uA],
|
|
1395
|
+
[0, 0, 0, 0, 5, () => EvaluatorList, () => DataSourceConfig$, () => OutputConfig$, () => EvaluationJobResults$, 64 | 0, 0, 5], 5
|
|
1396
|
+
];
|
|
1030
1397
|
export var GetBrowserSessionRequest$ = [3, n0, _GBSR,
|
|
1031
1398
|
0,
|
|
1032
1399
|
[_bI, _sI],
|
|
@@ -1054,7 +1421,7 @@ export var GetEventInput$ = [3, n0, _GEI,
|
|
|
1054
1421
|
];
|
|
1055
1422
|
export var GetEventOutput$ = [3, n0, _GEO,
|
|
1056
1423
|
0,
|
|
1057
|
-
[
|
|
1424
|
+
[_eve],
|
|
1058
1425
|
[[() => Event$, 0]], 1
|
|
1059
1426
|
];
|
|
1060
1427
|
export var GetMemoryRecordInput$ = [3, n0, _GMRI,
|
|
@@ -1067,6 +1434,16 @@ export var GetMemoryRecordOutput$ = [3, n0, _GMRO,
|
|
|
1067
1434
|
[_mR],
|
|
1068
1435
|
[[() => MemoryRecord$, 0]], 1
|
|
1069
1436
|
];
|
|
1437
|
+
export var GetRecommendationRequest$ = [3, n0, _GRR,
|
|
1438
|
+
0,
|
|
1439
|
+
[_rI],
|
|
1440
|
+
[[0, 1]], 1
|
|
1441
|
+
];
|
|
1442
|
+
export var GetRecommendationResponse$ = [3, n0, _GRRe,
|
|
1443
|
+
0,
|
|
1444
|
+
[_rI, _rAe, _n, _t, _rC, _sta, _cA, _uA, _d, _rR],
|
|
1445
|
+
[0, 0, 0, 0, [() => RecommendationConfig$, 0], 0, 5, 5, 0, [() => RecommendationResult$, 0]], 8
|
|
1446
|
+
];
|
|
1070
1447
|
export var GetResourceApiKeyRequest$ = [3, n0, _GRAKR,
|
|
1071
1448
|
0,
|
|
1072
1449
|
[_wIT, _rCPN],
|
|
@@ -1079,12 +1456,12 @@ export var GetResourceApiKeyResponse$ = [3, n0, _GRAKRe,
|
|
|
1079
1456
|
];
|
|
1080
1457
|
export var GetResourceOauth2TokenRequest$ = [3, n0, _GROTR,
|
|
1081
1458
|
0,
|
|
1082
|
-
[_wIT, _rCPN, _sc, _oF, _sU, _rORU, _fA, _cP,
|
|
1459
|
+
[_wIT, _rCPN, _sc, _oF, _sU, _rORU, _fA, _cP, _cSu],
|
|
1083
1460
|
[[() => WorkloadIdentityTokenType, 0], 0, 64 | 0, 0, 0, 0, 2, [() => CustomRequestParametersType, 0], [() => State, 0]], 4
|
|
1084
1461
|
];
|
|
1085
1462
|
export var GetResourceOauth2TokenResponse$ = [3, n0, _GROTRe,
|
|
1086
1463
|
0,
|
|
1087
|
-
[_aU,
|
|
1464
|
+
[_aU, _aTc, _sU, _sSe],
|
|
1088
1465
|
[[() => AuthorizationUrlType, 0], [() => AccessTokenType, 0], 0, 0]
|
|
1089
1466
|
];
|
|
1090
1467
|
export var GetWorkloadAccessTokenForJWTRequest$ = [3, n0, _GWATFJWTR,
|
|
@@ -1117,9 +1494,14 @@ export var GetWorkloadAccessTokenResponse$ = [3, n0, _GWATRe,
|
|
|
1117
1494
|
[_wAT],
|
|
1118
1495
|
[[() => WorkloadIdentityTokenType, 0]], 1
|
|
1119
1496
|
];
|
|
1497
|
+
export var GroundTruthTurn$ = [3, n0, _GTT,
|
|
1498
|
+
0,
|
|
1499
|
+
[_i, _eRx],
|
|
1500
|
+
[() => GroundTruthTurnInput$, () => EvaluationContent$]
|
|
1501
|
+
];
|
|
1120
1502
|
export var HarnessAgentCoreBrowserConfig$ = [3, n0, _HACBC,
|
|
1121
1503
|
0,
|
|
1122
|
-
[
|
|
1504
|
+
[_bAr],
|
|
1123
1505
|
[0]
|
|
1124
1506
|
];
|
|
1125
1507
|
export var HarnessAgentCoreCodeInterpreterConfig$ = [3, n0, _HACCIC,
|
|
@@ -1134,12 +1516,12 @@ export var HarnessAgentCoreGatewayConfig$ = [3, n0, _HACGC,
|
|
|
1134
1516
|
];
|
|
1135
1517
|
export var HarnessBedrockModelConfig$ = [3, n0, _HBMC,
|
|
1136
1518
|
0,
|
|
1137
|
-
[_mIo, _mTa, _tem,
|
|
1519
|
+
[_mIo, _mTa, _tem, _tPo],
|
|
1138
1520
|
[0, 1, 1, 1], 1
|
|
1139
1521
|
];
|
|
1140
1522
|
export var HarnessContentBlockDeltaEvent$ = [3, n0, _HCBDE,
|
|
1141
1523
|
0,
|
|
1142
|
-
[_cBI,
|
|
1524
|
+
[_cBI, _de],
|
|
1143
1525
|
[1, [() => HarnessContentBlockDelta$, 0]], 2
|
|
1144
1526
|
];
|
|
1145
1527
|
export var HarnessContentBlockStartEvent$ = [3, n0, _HCBSE,
|
|
@@ -1154,12 +1536,12 @@ export var HarnessContentBlockStopEvent$ = [3, n0, _HCBSEa,
|
|
|
1154
1536
|
];
|
|
1155
1537
|
export var HarnessGeminiModelConfig$ = [3, n0, _HGMC,
|
|
1156
1538
|
0,
|
|
1157
|
-
[_mIo, _aKA, _mTa, _tem,
|
|
1539
|
+
[_mIo, _aKA, _mTa, _tem, _tPo, _tK],
|
|
1158
1540
|
[0, 0, 1, 1, 1, 1], 2
|
|
1159
1541
|
];
|
|
1160
1542
|
export var HarnessInlineFunctionConfig$ = [3, n0, _HIFC,
|
|
1161
1543
|
0,
|
|
1162
|
-
[
|
|
1544
|
+
[_d, _iS],
|
|
1163
1545
|
[[() => HarnessInlineFunctionDescription, 0], [() => SensitiveJson, 0]], 2
|
|
1164
1546
|
];
|
|
1165
1547
|
export var HarnessMessage$ = [3, n0, _HM,
|
|
@@ -1179,12 +1561,12 @@ export var HarnessMessageStopEvent$ = [3, n0, _HMSEa,
|
|
|
1179
1561
|
];
|
|
1180
1562
|
export var HarnessMetadataEvent$ = [3, n0, _HME,
|
|
1181
1563
|
0,
|
|
1182
|
-
[_us,
|
|
1564
|
+
[_us, _metr],
|
|
1183
1565
|
[() => HarnessTokenUsage$, () => HarnessStreamMetrics$], 2
|
|
1184
1566
|
];
|
|
1185
1567
|
export var HarnessOpenAiModelConfig$ = [3, n0, _HOAMC,
|
|
1186
1568
|
0,
|
|
1187
|
-
[_mIo, _aKA, _mTa, _tem,
|
|
1569
|
+
[_mIo, _aKA, _mTa, _tem, _tPo],
|
|
1188
1570
|
[0, 0, 1, 1, 1], 2
|
|
1189
1571
|
];
|
|
1190
1572
|
export var HarnessReasoningTextBlock$ = [3, n0, _HRTB,
|
|
@@ -1194,7 +1576,7 @@ export var HarnessReasoningTextBlock$ = [3, n0, _HRTB,
|
|
|
1194
1576
|
];
|
|
1195
1577
|
export var HarnessRemoteMcpConfig$ = [3, n0, _HRMC,
|
|
1196
1578
|
0,
|
|
1197
|
-
[
|
|
1579
|
+
[_url, _h],
|
|
1198
1580
|
[[() => HarnessRemoteMcpUrl, 0], [() => HttpHeadersMap, 0]], 1
|
|
1199
1581
|
];
|
|
1200
1582
|
export var HarnessStreamMetrics$ = [3, n0, _HSM,
|
|
@@ -1224,7 +1606,7 @@ export var HarnessToolResultBlockStart$ = [3, n0, _HTRBS,
|
|
|
1224
1606
|
];
|
|
1225
1607
|
export var HarnessToolUseBlock$ = [3, n0, _HTUB,
|
|
1226
1608
|
0,
|
|
1227
|
-
[_n, _tUI, _i, _t,
|
|
1609
|
+
[_n, _tUI, _i, _t, _sNe],
|
|
1228
1610
|
[0, 0, [() => SensitiveJson, 0], 0, 0], 3
|
|
1229
1611
|
];
|
|
1230
1612
|
export var HarnessToolUseBlockDelta$ = [3, n0, _HTUBD,
|
|
@@ -1234,9 +1616,14 @@ export var HarnessToolUseBlockDelta$ = [3, n0, _HTUBD,
|
|
|
1234
1616
|
];
|
|
1235
1617
|
export var HarnessToolUseBlockStart$ = [3, n0, _HTUBS,
|
|
1236
1618
|
0,
|
|
1237
|
-
[_tUI, _n, _t,
|
|
1619
|
+
[_tUI, _n, _t, _sNe],
|
|
1238
1620
|
[0, 0, 0, 0], 2
|
|
1239
1621
|
];
|
|
1622
|
+
export var InlineGroundTruth$ = [3, n0, _IGT,
|
|
1623
|
+
0,
|
|
1624
|
+
[_as, _eTx, _tu],
|
|
1625
|
+
[() => EvaluationContentList, () => EvaluationExpectedTrajectory$, () => GroundTruthTurnList]
|
|
1626
|
+
];
|
|
1240
1627
|
export var InputContentBlock$ = [3, n0, _ICB,
|
|
1241
1628
|
0,
|
|
1242
1629
|
[_pa, _te, _bl],
|
|
@@ -1274,7 +1661,7 @@ export var InvokeBrowserRequest$ = [3, n0, _IBR,
|
|
|
1274
1661
|
];
|
|
1275
1662
|
export var InvokeBrowserResponse$ = [3, n0, _IBRn,
|
|
1276
1663
|
0,
|
|
1277
|
-
[
|
|
1664
|
+
[_resul, _sI],
|
|
1278
1665
|
[() => BrowserActionResult$, [0, { [_hH]: _xabsi }]], 2
|
|
1279
1666
|
];
|
|
1280
1667
|
export var InvokeCodeInterpreterRequest$ = [3, n0, _ICIR,
|
|
@@ -1327,6 +1714,16 @@ export var KeyTypeResult$ = [3, n0, _KTR,
|
|
|
1327
1714
|
[_sta, _e],
|
|
1328
1715
|
[0, 0], 1
|
|
1329
1716
|
];
|
|
1717
|
+
export var ListABTestsRequest$ = [3, n0, _LABTR,
|
|
1718
|
+
0,
|
|
1719
|
+
[_mRa, _nT],
|
|
1720
|
+
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
1721
|
+
];
|
|
1722
|
+
export var ListABTestsResponse$ = [3, n0, _LABTRi,
|
|
1723
|
+
0,
|
|
1724
|
+
[_aTb, _nT],
|
|
1725
|
+
[() => ABTestSummaryList, 0], 1
|
|
1726
|
+
];
|
|
1330
1727
|
export var ListActorsInput$ = [3, n0, _LAI,
|
|
1331
1728
|
0,
|
|
1332
1729
|
[_mI, _mRa, _nT],
|
|
@@ -1337,6 +1734,16 @@ export var ListActorsOutput$ = [3, n0, _LAO,
|
|
|
1337
1734
|
[_aSc, _nT],
|
|
1338
1735
|
[() => ActorSummaryList, 0], 1
|
|
1339
1736
|
];
|
|
1737
|
+
export var ListBatchEvaluationsRequest$ = [3, n0, _LBER,
|
|
1738
|
+
0,
|
|
1739
|
+
[_mRa, _nT],
|
|
1740
|
+
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
1741
|
+
];
|
|
1742
|
+
export var ListBatchEvaluationsResponse$ = [3, n0, _LBERi,
|
|
1743
|
+
0,
|
|
1744
|
+
[_bE, _nT],
|
|
1745
|
+
[() => BatchEvaluationSummaryList, 0], 1
|
|
1746
|
+
];
|
|
1340
1747
|
export var ListBrowserSessionsRequest$ = [3, n0, _LBSR,
|
|
1341
1748
|
0,
|
|
1342
1749
|
[_bI, _mRa, _nT, _sta],
|
|
@@ -1359,17 +1766,17 @@ export var ListCodeInterpreterSessionsResponse$ = [3, n0, _LCISRi,
|
|
|
1359
1766
|
];
|
|
1360
1767
|
export var ListEventsInput$ = [3, n0, _LEI,
|
|
1361
1768
|
0,
|
|
1362
|
-
[_mI, _sI, _aI, _iP,
|
|
1769
|
+
[_mI, _sI, _aI, _iP, _fi, _mRa, _nT],
|
|
1363
1770
|
[[0, 1], [0, 1], [0, 1], 2, () => FilterInput$, 1, 0], 3
|
|
1364
1771
|
];
|
|
1365
1772
|
export var ListEventsOutput$ = [3, n0, _LEO,
|
|
1366
1773
|
0,
|
|
1367
|
-
[
|
|
1774
|
+
[_even, _nT],
|
|
1368
1775
|
[[() => EventList, 0], 0], 1
|
|
1369
1776
|
];
|
|
1370
1777
|
export var ListMemoryExtractionJobsInput$ = [3, n0, _LMEJI,
|
|
1371
1778
|
0,
|
|
1372
|
-
[_mI, _mRa,
|
|
1779
|
+
[_mI, _mRa, _fi, _nT],
|
|
1373
1780
|
[[0, 1], 1, () => ExtractionJobFilterInput$, 0], 1
|
|
1374
1781
|
];
|
|
1375
1782
|
export var ListMemoryExtractionJobsOutput$ = [3, n0, _LMEJO,
|
|
@@ -1387,9 +1794,19 @@ export var ListMemoryRecordsOutput$ = [3, n0, _LMRO,
|
|
|
1387
1794
|
[_mRS, _nT],
|
|
1388
1795
|
[[() => MemoryRecordSummaryList, 0], 0], 1
|
|
1389
1796
|
];
|
|
1797
|
+
export var ListRecommendationsRequest$ = [3, n0, _LRR,
|
|
1798
|
+
0,
|
|
1799
|
+
[_mRa, _nT, _sF],
|
|
1800
|
+
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _sta }]]
|
|
1801
|
+
];
|
|
1802
|
+
export var ListRecommendationsResponse$ = [3, n0, _LRRi,
|
|
1803
|
+
0,
|
|
1804
|
+
[_rS, _nT],
|
|
1805
|
+
[() => RecommendationSummaryList, 0], 1
|
|
1806
|
+
];
|
|
1390
1807
|
export var ListSessionsInput$ = [3, n0, _LSI,
|
|
1391
1808
|
0,
|
|
1392
|
-
[_mI, _aI, _mRa, _nT,
|
|
1809
|
+
[_mI, _aI, _mRa, _nT, _fi],
|
|
1393
1810
|
[[0, 1], [0, 1], 1, 0, () => SessionFilter$], 2
|
|
1394
1811
|
];
|
|
1395
1812
|
export var ListSessionsOutput$ = [3, n0, _LSO,
|
|
@@ -1414,12 +1831,12 @@ export var MemoryMetadataFilterExpression$ = [3, n0, _MMFE,
|
|
|
1414
1831
|
];
|
|
1415
1832
|
export var MemoryRecord$ = [3, n0, _MR,
|
|
1416
1833
|
0,
|
|
1417
|
-
[_mRI, _co, _mSIe, _nam, _cA,
|
|
1834
|
+
[_mRI, _co, _mSIe, _nam, _cA, _met],
|
|
1418
1835
|
[0, [() => MemoryContent$, 0], 0, 64 | 0, 4, () => MetadataMap], 5
|
|
1419
1836
|
];
|
|
1420
1837
|
export var MemoryRecordCreateInput$ = [3, n0, _MRCI,
|
|
1421
1838
|
0,
|
|
1422
|
-
[
|
|
1839
|
+
[_rIe, _nam, _co, _tim, _mSIe],
|
|
1423
1840
|
[0, 64 | 0, [() => MemoryContent$, 0], 4, 0], 4
|
|
1424
1841
|
];
|
|
1425
1842
|
export var MemoryRecordDeleteInput$ = [3, n0, _MRDI,
|
|
@@ -1429,12 +1846,12 @@ export var MemoryRecordDeleteInput$ = [3, n0, _MRDI,
|
|
|
1429
1846
|
];
|
|
1430
1847
|
export var MemoryRecordOutput$ = [3, n0, _MRO,
|
|
1431
1848
|
0,
|
|
1432
|
-
[_mRI, _sta,
|
|
1849
|
+
[_mRI, _sta, _rIe, _eCr, _eMr],
|
|
1433
1850
|
[0, 0, 0, 1, 0], 2
|
|
1434
1851
|
];
|
|
1435
1852
|
export var MemoryRecordSummary$ = [3, n0, _MRS,
|
|
1436
1853
|
0,
|
|
1437
|
-
[_mRI, _co, _mSIe, _nam, _cA, _sco,
|
|
1854
|
+
[_mRI, _co, _mSIe, _nam, _cA, _sco, _met],
|
|
1438
1855
|
[0, [() => MemoryContent$, 0], 0, 64 | 0, 4, 1, () => MetadataMap], 5
|
|
1439
1856
|
];
|
|
1440
1857
|
export var MemoryRecordUpdateInput$ = [3, n0, _MRUI,
|
|
@@ -1492,6 +1909,11 @@ export var OAuthCredentialProvider$ = [3, n0, _OACP,
|
|
|
1492
1909
|
[_pA, _sc, _cP, _gT, _dRU],
|
|
1493
1910
|
[0, 64 | 0, [() => OAuthCustomParameters, 0], 0, 0], 2
|
|
1494
1911
|
];
|
|
1912
|
+
export var PerVariantOnlineEvaluationConfig$ = [3, n0, _PVOEC,
|
|
1913
|
+
0,
|
|
1914
|
+
[_n, _oECA],
|
|
1915
|
+
[0, 0], 2
|
|
1916
|
+
];
|
|
1495
1917
|
export var ProxyBypass$ = [3, n0, _PB,
|
|
1496
1918
|
0,
|
|
1497
1919
|
[_dP],
|
|
@@ -1502,14 +1924,34 @@ export var ProxyConfiguration$ = [3, n0, _PC,
|
|
|
1502
1924
|
[_pro, _by],
|
|
1503
1925
|
[() => Proxies, () => ProxyBypass$], 1
|
|
1504
1926
|
];
|
|
1927
|
+
export var RecommendationEvaluationConfig$ = [3, n0, _REC,
|
|
1928
|
+
0,
|
|
1929
|
+
[_ev],
|
|
1930
|
+
[() => RecommendationEvaluatorList], 1
|
|
1931
|
+
];
|
|
1932
|
+
export var RecommendationEvaluatorReference$ = [3, n0, _RER,
|
|
1933
|
+
0,
|
|
1934
|
+
[_eA],
|
|
1935
|
+
[0], 1
|
|
1936
|
+
];
|
|
1937
|
+
export var RecommendationResultConfigurationBundle$ = [3, n0, _RRCB,
|
|
1938
|
+
0,
|
|
1939
|
+
[_bA, _vI],
|
|
1940
|
+
[0, 0], 2
|
|
1941
|
+
];
|
|
1942
|
+
export var RecommendationSummary$ = [3, n0, _RSe,
|
|
1943
|
+
0,
|
|
1944
|
+
[_rI, _rAe, _n, _t, _sta, _cA, _uA, _d],
|
|
1945
|
+
[0, 0, 0, 0, 0, 5, 5, 0], 7
|
|
1946
|
+
];
|
|
1505
1947
|
export var RegistryRecordSummary$ = [3, n0, _RRS,
|
|
1506
1948
|
0,
|
|
1507
|
-
[
|
|
1949
|
+
[_rAeg, _rAec, _rIec, _n, _dT, _des, _ve, _sta, _cA, _uA, _d],
|
|
1508
1950
|
[0, 0, 0, 0, 0, () => Descriptors$, 0, 0, 5, 5, [() => Description, 0]], 10
|
|
1509
1951
|
];
|
|
1510
1952
|
export var ResourceContent$ = [3, n0, _RC,
|
|
1511
1953
|
0,
|
|
1512
|
-
[_t,
|
|
1954
|
+
[_t, _ur, _mT, _te, _bl],
|
|
1513
1955
|
[0, 0, 0, 0, 21], 1
|
|
1514
1956
|
];
|
|
1515
1957
|
export var ResponseChunk$ = [3, n0, _RCe,
|
|
@@ -1549,7 +1991,7 @@ export var ScreenshotArguments$ = [3, n0, _SA,
|
|
|
1549
1991
|
];
|
|
1550
1992
|
export var ScreenshotResult$ = [3, n0, _SR,
|
|
1551
1993
|
0,
|
|
1552
|
-
[_sta, _e,
|
|
1994
|
+
[_sta, _e, _da],
|
|
1553
1995
|
[0, 0, 21], 1
|
|
1554
1996
|
];
|
|
1555
1997
|
export var SearchCriteria$ = [3, n0, _SC,
|
|
@@ -1559,12 +2001,12 @@ export var SearchCriteria$ = [3, n0, _SC,
|
|
|
1559
2001
|
];
|
|
1560
2002
|
export var SearchRegistryRecordsRequest$ = [3, n0, _SRRR,
|
|
1561
2003
|
0,
|
|
1562
|
-
[_sQ, _rIeg, _mRa,
|
|
2004
|
+
[_sQ, _rIeg, _mRa, _f],
|
|
1563
2005
|
[0, 64 | 0, 1, 15], 2
|
|
1564
2006
|
];
|
|
1565
2007
|
export var SearchRegistryRecordsResponse$ = [3, n0, _SRRRe,
|
|
1566
2008
|
0,
|
|
1567
|
-
[
|
|
2009
|
+
[_rRe],
|
|
1568
2010
|
[[() => RegistryRecordSummaryList, 0]], 1
|
|
1569
2011
|
];
|
|
1570
2012
|
export var SecretsManagerLocation$ = [3, n0, _SML,
|
|
@@ -1582,6 +2024,16 @@ export var SessionFilter$ = [3, n0, _SF,
|
|
|
1582
2024
|
[_eF],
|
|
1583
2025
|
[0]
|
|
1584
2026
|
];
|
|
2027
|
+
export var SessionFilterConfig$ = [3, n0, _SFC,
|
|
2028
|
+
0,
|
|
2029
|
+
[_sT, _eT],
|
|
2030
|
+
[5, 5]
|
|
2031
|
+
];
|
|
2032
|
+
export var SessionMetadataShape$ = [3, n0, _SMS,
|
|
2033
|
+
0,
|
|
2034
|
+
[_sI, _tSI, _gTr, _met],
|
|
2035
|
+
[0, 0, () => GroundTruthSource$, 128 | 0], 1
|
|
2036
|
+
];
|
|
1585
2037
|
export var SessionSummary$ = [3, n0, _SSe,
|
|
1586
2038
|
0,
|
|
1587
2039
|
[_sI, _aI, _cA],
|
|
@@ -1602,6 +2054,16 @@ export var SpanContext$ = [3, n0, _SCp,
|
|
|
1602
2054
|
[_sI, _tI, _sIp],
|
|
1603
2055
|
[0, 0, 0], 1
|
|
1604
2056
|
];
|
|
2057
|
+
export var StartBatchEvaluationRequest$ = [3, n0, _SBER,
|
|
2058
|
+
0,
|
|
2059
|
+
[_bEN, _dSC, _ev, _cT, _eMva, _d],
|
|
2060
|
+
[0, () => DataSourceConfig$, () => EvaluatorList, [0, 4], () => EvaluationMetadata$, 0], 2
|
|
2061
|
+
];
|
|
2062
|
+
export var StartBatchEvaluationResponse$ = [3, n0, _SBERt,
|
|
2063
|
+
0,
|
|
2064
|
+
[_bEI, _bEA, _bEN, _sta, _cA, _ev, _oC, _d],
|
|
2065
|
+
[0, 0, 0, 0, 5, () => EvaluatorList, () => OutputConfig$, 0], 5
|
|
2066
|
+
];
|
|
1605
2067
|
export var StartBrowserSessionRequest$ = [3, n0, _SBSR,
|
|
1606
2068
|
0,
|
|
1607
2069
|
[_bI, _tI, _tPr, _n, _sTS, _vP, _ext, _pC, _pCr, _eP, _ce, _cT],
|
|
@@ -1632,6 +2094,26 @@ export var StartMemoryExtractionJobOutput$ = [3, n0, _SMEJO,
|
|
|
1632
2094
|
[_jI],
|
|
1633
2095
|
[0], 1
|
|
1634
2096
|
];
|
|
2097
|
+
export var StartRecommendationRequest$ = [3, n0, _SRR,
|
|
2098
|
+
0,
|
|
2099
|
+
[_n, _t, _rC, _d, _cT],
|
|
2100
|
+
[0, 0, [() => RecommendationConfig$, 0], 0, [0, 4]], 3
|
|
2101
|
+
];
|
|
2102
|
+
export var StartRecommendationResponse$ = [3, n0, _SRRt,
|
|
2103
|
+
0,
|
|
2104
|
+
[_rI, _rAe, _n, _t, _rC, _sta, _cA, _uA, _d],
|
|
2105
|
+
[0, 0, 0, 0, [() => RecommendationConfig$, 0], 0, 5, 5, 0], 8
|
|
2106
|
+
];
|
|
2107
|
+
export var StopBatchEvaluationRequest$ = [3, n0, _SBERto,
|
|
2108
|
+
0,
|
|
2109
|
+
[_bEI],
|
|
2110
|
+
[[0, 1]], 1
|
|
2111
|
+
];
|
|
2112
|
+
export var StopBatchEvaluationResponse$ = [3, n0, _SBERtop,
|
|
2113
|
+
0,
|
|
2114
|
+
[_bEI, _bEA, _sta, _d],
|
|
2115
|
+
[0, 0, 0, 0], 3
|
|
2116
|
+
];
|
|
1635
2117
|
export var StopBrowserSessionRequest$ = [3, n0, _SBSRto,
|
|
1636
2118
|
0,
|
|
1637
2119
|
[_bI, _sI, _tI, _tPr, _cT],
|
|
@@ -1662,6 +2144,26 @@ export var StopRuntimeSessionResponse$ = [3, n0, _SRSRt,
|
|
|
1662
2144
|
[_rSI, _sCt],
|
|
1663
2145
|
[[0, { [_hH]: _XABARSI }], [1, 32]]
|
|
1664
2146
|
];
|
|
2147
|
+
export var SystemPromptConfigurationBundle$ = [3, n0, _SPCB,
|
|
2148
|
+
0,
|
|
2149
|
+
[_bA, _vI, _sPJP],
|
|
2150
|
+
[0, 0, 0], 3
|
|
2151
|
+
];
|
|
2152
|
+
export var SystemPromptRecommendationConfig$ = [3, n0, _SPRC,
|
|
2153
|
+
0,
|
|
2154
|
+
[_sP, _aTg, _eCv],
|
|
2155
|
+
[[() => SystemPromptConfig$, 0], [() => AgentTracesConfig$, 0], () => RecommendationEvaluationConfig$], 3
|
|
2156
|
+
];
|
|
2157
|
+
export var SystemPromptRecommendationResult$ = [3, n0, _SPRR,
|
|
2158
|
+
0,
|
|
2159
|
+
[_rSP, _cB, _eCr, _eMr],
|
|
2160
|
+
[[() => SystemPromptText, 0], () => RecommendationResultConfigurationBundle$, 0, 0]
|
|
2161
|
+
];
|
|
2162
|
+
export var TargetRef$ = [3, n0, _TR,
|
|
2163
|
+
0,
|
|
2164
|
+
[_n],
|
|
2165
|
+
[0], 1
|
|
2166
|
+
];
|
|
1665
2167
|
export var TokenUsage$ = [3, n0, _TU,
|
|
1666
2168
|
0,
|
|
1667
2169
|
[_iTn, _oT, _tT],
|
|
@@ -1669,9 +2171,39 @@ export var TokenUsage$ = [3, n0, _TU,
|
|
|
1669
2171
|
];
|
|
1670
2172
|
export var ToolArguments$ = [3, n0, _TA,
|
|
1671
2173
|
0,
|
|
1672
|
-
[_cod, _lan, _cCl, _com, _pa, _pat, _co, _dPi, _tIa,
|
|
2174
|
+
[_cod, _lan, _cCl, _com, _pa, _pat, _co, _dPi, _tIa, _run],
|
|
1673
2175
|
[0, 0, 2, 0, 0, 64 | 0, [() => InputContentBlockList, 0], 0, 0, 0]
|
|
1674
2176
|
];
|
|
2177
|
+
export var ToolDescriptionConfigurationBundle$ = [3, n0, _TDCB,
|
|
2178
|
+
0,
|
|
2179
|
+
[_bA, _vI, _to],
|
|
2180
|
+
[0, 0, () => ConfigurationBundleToolEntryList], 3
|
|
2181
|
+
];
|
|
2182
|
+
export var ToolDescriptionInput$ = [3, n0, _TDI,
|
|
2183
|
+
0,
|
|
2184
|
+
[_tN, _tD],
|
|
2185
|
+
[0, [() => ToolDescriptionConfig$, 0]], 2
|
|
2186
|
+
];
|
|
2187
|
+
export var ToolDescriptionOutput$ = [3, n0, _TDO,
|
|
2188
|
+
0,
|
|
2189
|
+
[_tN, _rTD],
|
|
2190
|
+
[0, [() => ToolDescriptionText, 0]], 1
|
|
2191
|
+
];
|
|
2192
|
+
export var ToolDescriptionRecommendationConfig$ = [3, n0, _TDRC,
|
|
2193
|
+
0,
|
|
2194
|
+
[_tD, _aTg],
|
|
2195
|
+
[[() => ToolDescriptionSource$, 0], [() => AgentTracesConfig$, 0]], 2
|
|
2196
|
+
];
|
|
2197
|
+
export var ToolDescriptionRecommendationResult$ = [3, n0, _TDRR,
|
|
2198
|
+
0,
|
|
2199
|
+
[_to, _cB, _eCr, _eMr],
|
|
2200
|
+
[[() => ToolDescriptionResultList, 0], () => RecommendationResultConfigurationBundle$, 0, 0]
|
|
2201
|
+
];
|
|
2202
|
+
export var ToolDescriptionTextInput$ = [3, n0, _TDTI,
|
|
2203
|
+
0,
|
|
2204
|
+
[_to],
|
|
2205
|
+
[[() => ToolDescriptionList, 0]], 1
|
|
2206
|
+
];
|
|
1675
2207
|
export var ToolResultStructuredContent$ = [3, n0, _TRSC,
|
|
1676
2208
|
0,
|
|
1677
2209
|
[_tIa, _tSa, _std, _stde, _eC, _eTxe],
|
|
@@ -1682,6 +2214,16 @@ export var ToolsDefinition$ = [3, n0, _TD,
|
|
|
1682
2214
|
[_pV, _iC],
|
|
1683
2215
|
[0, 0]
|
|
1684
2216
|
];
|
|
2217
|
+
export var UpdateABTestRequest$ = [3, n0, _UABTR,
|
|
2218
|
+
0,
|
|
2219
|
+
[_aTI, _cT, _n, _d, _va, _gF, _eCv, _rA, _eS],
|
|
2220
|
+
[[0, 1], [0, 4], 0, 0, () => VariantList, () => GatewayFilter$, () => ABTestEvaluationConfig$, 0, 0], 1
|
|
2221
|
+
];
|
|
2222
|
+
export var UpdateABTestResponse$ = [3, n0, _UABTRp,
|
|
2223
|
+
0,
|
|
2224
|
+
[_aTI, _aTA, _sta, _eS, _uA],
|
|
2225
|
+
[0, 0, 0, 0, 4], 5
|
|
2226
|
+
];
|
|
1685
2227
|
export var UpdateBrowserStreamRequest$ = [3, n0, _UBSR,
|
|
1686
2228
|
0,
|
|
1687
2229
|
[_bI, _sI, _sUt, _cT],
|
|
@@ -1697,15 +2239,36 @@ export var ValidationExceptionField$ = [3, n0, _VEF,
|
|
|
1697
2239
|
[_n, _m],
|
|
1698
2240
|
[0, 0], 2
|
|
1699
2241
|
];
|
|
2242
|
+
export var Variant$ = [3, n0, _V,
|
|
2243
|
+
0,
|
|
2244
|
+
[_n, _w, _vC],
|
|
2245
|
+
[0, 1, () => VariantConfiguration$], 3
|
|
2246
|
+
];
|
|
2247
|
+
export var VariantConfiguration$ = [3, n0, _VC,
|
|
2248
|
+
0,
|
|
2249
|
+
[_cB, _ta],
|
|
2250
|
+
[() => ConfigurationBundleRef$, () => TargetRef$]
|
|
2251
|
+
];
|
|
2252
|
+
export var VariantResult$ = [3, n0, _VR,
|
|
2253
|
+
0,
|
|
2254
|
+
[_vN, _sSa, _me, _iSs, _aCb, _pCe, _pVa, _cI],
|
|
2255
|
+
[0, 1, 1, 2, 1, 1, 1, () => ConfidenceInterval$], 4
|
|
2256
|
+
];
|
|
1700
2257
|
export var ViewPort$ = [3, n0, _VP,
|
|
1701
2258
|
0,
|
|
1702
|
-
[
|
|
2259
|
+
[_wi, _he],
|
|
1703
2260
|
[1, 1], 2
|
|
1704
2261
|
];
|
|
1705
2262
|
var __Unit = "unit";
|
|
2263
|
+
var ABTestSummaryList = [1, n0, _ABTSL,
|
|
2264
|
+
0, () => ABTestSummary$
|
|
2265
|
+
];
|
|
1706
2266
|
var ActorSummaryList = [1, n0, _ASL,
|
|
1707
2267
|
0, () => ActorSummary$
|
|
1708
2268
|
];
|
|
2269
|
+
var BatchEvaluationSummaryList = [1, n0, _BESL,
|
|
2270
|
+
0, () => BatchEvaluationSummary$
|
|
2271
|
+
];
|
|
1709
2272
|
var BrowserEnterprisePolicies = [1, n0, _BEPr,
|
|
1710
2273
|
0, () => BrowserEnterprisePolicy$
|
|
1711
2274
|
];
|
|
@@ -1718,13 +2281,20 @@ var BrowserSessionSummaries = [1, n0, _BSSro,
|
|
|
1718
2281
|
var Certificates = [1, n0, _Ce,
|
|
1719
2282
|
0, () => Certificate$
|
|
1720
2283
|
];
|
|
2284
|
+
var CloudWatchLogsFilterList = [1, n0, _CWLFL,
|
|
2285
|
+
0, () => CloudWatchLogsFilter$
|
|
2286
|
+
];
|
|
1721
2287
|
var CodeInterpreterSessionSummaries = [1, n0, _CISSo,
|
|
1722
2288
|
0, () => CodeInterpreterSessionSummary$
|
|
1723
2289
|
];
|
|
2290
|
+
var ConfigurationBundleToolEntryList = [1, n0, _CBTEL,
|
|
2291
|
+
0, () => ConfigurationBundleToolEntry$
|
|
2292
|
+
];
|
|
1724
2293
|
var ContentBlockList = [1, n0, _CBL,
|
|
1725
2294
|
0, () => ContentBlock$
|
|
1726
2295
|
];
|
|
1727
2296
|
var DomainPatterns = 64 | 0;
|
|
2297
|
+
var ErrorDetailsList = 64 | 0;
|
|
1728
2298
|
var EvaluationContentList = [1, n0, _ECL,
|
|
1729
2299
|
0, () => EvaluationContent$
|
|
1730
2300
|
];
|
|
@@ -1735,8 +2305,18 @@ var EvaluationResults = [1, n0, _ERva,
|
|
|
1735
2305
|
0, [() => EvaluationResultContent$,
|
|
1736
2306
|
0]
|
|
1737
2307
|
];
|
|
2308
|
+
var EvaluationStringList = 64 | 0;
|
|
1738
2309
|
var EvaluationToolNames = 64 | 0;
|
|
1739
|
-
var
|
|
2310
|
+
var EvaluatorList = [1, n0, _EL,
|
|
2311
|
+
0, () => Evaluator$
|
|
2312
|
+
];
|
|
2313
|
+
var EvaluatorMetricList = [1, n0, _EML,
|
|
2314
|
+
0, () => EvaluatorMetric$
|
|
2315
|
+
];
|
|
2316
|
+
var EvaluatorSummaryList = [1, n0, _ESL,
|
|
2317
|
+
0, () => EvaluatorSummary$
|
|
2318
|
+
];
|
|
2319
|
+
var EventList = [1, n0, _ELv,
|
|
1740
2320
|
0, [() => Event$,
|
|
1741
2321
|
0]
|
|
1742
2322
|
];
|
|
@@ -1746,6 +2326,9 @@ var EventMetadataFilterList = [1, n0, _EMFL,
|
|
|
1746
2326
|
var ExtractionJobMetadataList = [1, n0, _EJML,
|
|
1747
2327
|
0, () => ExtractionJobMetadata$
|
|
1748
2328
|
];
|
|
2329
|
+
var GroundTruthTurnList = [1, n0, _GTTL,
|
|
2330
|
+
0, () => GroundTruthTurn$
|
|
2331
|
+
];
|
|
1749
2332
|
var HarnessAllowedTools = 64 | 0;
|
|
1750
2333
|
var HarnessContentBlocks = [1, n0, _HCB,
|
|
1751
2334
|
0, [() => HarnessContentBlock$,
|
|
@@ -1780,6 +2363,7 @@ var InputContentBlockList = [1, n0, _ICBL,
|
|
|
1780
2363
|
0]
|
|
1781
2364
|
];
|
|
1782
2365
|
var KeyList = 64 | 0;
|
|
2366
|
+
var LogGroupArnList = 64 | 0;
|
|
1783
2367
|
var MemoryMetadataFilterList = [1, n0, _MMFL,
|
|
1784
2368
|
0, () => MemoryMetadataFilterExpression$
|
|
1785
2369
|
];
|
|
@@ -1810,15 +2394,28 @@ var PayloadTypeList = [1, n0, _PTL,
|
|
|
1810
2394
|
0, [() => PayloadType$,
|
|
1811
2395
|
0]
|
|
1812
2396
|
];
|
|
2397
|
+
var PerVariantOnlineEvaluationConfigList = [1, n0, _PVOECL,
|
|
2398
|
+
0, () => PerVariantOnlineEvaluationConfig$
|
|
2399
|
+
];
|
|
1813
2400
|
var Proxies = [1, n0, _P,
|
|
1814
2401
|
0, () => Proxy$
|
|
1815
2402
|
];
|
|
2403
|
+
var RecommendationEvaluatorList = [1, n0, _REL,
|
|
2404
|
+
0, () => RecommendationEvaluatorReference$
|
|
2405
|
+
];
|
|
2406
|
+
var RecommendationSummaryList = [1, n0, _RSL,
|
|
2407
|
+
0, () => RecommendationSummary$
|
|
2408
|
+
];
|
|
1816
2409
|
var RegistryIdList = 64 | 0;
|
|
1817
2410
|
var RegistryRecordSummaryList = [1, n0, _RRSL,
|
|
1818
2411
|
0, [() => RegistryRecordSummary$,
|
|
1819
2412
|
0]
|
|
1820
2413
|
];
|
|
1821
2414
|
var ScopesListType = 64 | 0;
|
|
2415
|
+
var ServiceNameList = 64 | 0;
|
|
2416
|
+
var SessionMetadataList = [1, n0, _SMLe,
|
|
2417
|
+
0, () => SessionMetadataShape$
|
|
2418
|
+
];
|
|
1822
2419
|
var SessionSummaryList = [1, n0, _SSL,
|
|
1823
2420
|
0, () => SessionSummary$
|
|
1824
2421
|
];
|
|
@@ -1827,10 +2424,25 @@ var Spans = [1, n0, _Sp,
|
|
|
1827
2424
|
8, 15
|
|
1828
2425
|
];
|
|
1829
2426
|
var StringList = 64 | 0;
|
|
2427
|
+
var TargetPathList = 64 | 0;
|
|
2428
|
+
var ToolDescriptionList = [1, n0, _TDL,
|
|
2429
|
+
0, [() => ToolDescriptionInput$,
|
|
2430
|
+
0]
|
|
2431
|
+
];
|
|
2432
|
+
var ToolDescriptionResultList = [1, n0, _TDRL,
|
|
2433
|
+
0, [() => ToolDescriptionOutput$,
|
|
2434
|
+
0]
|
|
2435
|
+
];
|
|
1830
2436
|
var TraceIds = 64 | 0;
|
|
1831
2437
|
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1832
2438
|
0, () => ValidationExceptionField$
|
|
1833
2439
|
];
|
|
2440
|
+
var VariantList = [1, n0, _VL,
|
|
2441
|
+
0, () => Variant$
|
|
2442
|
+
];
|
|
2443
|
+
var VariantResultList = [1, n0, _VRL,
|
|
2444
|
+
0, () => VariantResult$
|
|
2445
|
+
];
|
|
1834
2446
|
var CustomRequestParametersType = [2, n0, _CRPT,
|
|
1835
2447
|
0, [0,
|
|
1836
2448
|
0],
|
|
@@ -1849,6 +2461,17 @@ var OAuthCustomParameters = [2, n0, _OACPu,
|
|
|
1849
2461
|
[() => OAuthCustomParametersValue,
|
|
1850
2462
|
0]
|
|
1851
2463
|
];
|
|
2464
|
+
var StringMap = 128 | 0;
|
|
2465
|
+
export var ABTestEvaluationConfig$ = [4, n0, _ABTEC,
|
|
2466
|
+
0,
|
|
2467
|
+
[_oECA, _pVOEC],
|
|
2468
|
+
[0, () => PerVariantOnlineEvaluationConfigList]
|
|
2469
|
+
];
|
|
2470
|
+
export var AgentTracesConfig$ = [4, n0, _ATC,
|
|
2471
|
+
0,
|
|
2472
|
+
[_sSess, _cL],
|
|
2473
|
+
[[() => Spans, 0], () => CloudWatchLogsTraceConfig$]
|
|
2474
|
+
];
|
|
1852
2475
|
export var BrowserAction$ = [4, n0, _BAr,
|
|
1853
2476
|
0,
|
|
1854
2477
|
[_mC, _mM, _mD, _mS, _kT, _kP, _kS, _scr],
|
|
@@ -1866,7 +2489,7 @@ export var CertificateLocation$ = [4, n0, _CL,
|
|
|
1866
2489
|
];
|
|
1867
2490
|
export var CodeInterpreterStreamOutput$ = [4, n0, _CISO,
|
|
1868
2491
|
{ [_st]: 1 },
|
|
1869
|
-
[
|
|
2492
|
+
[_resul, _aDE, _cE, _iSE, _rNFE, _sQEE, _tEh, _vE],
|
|
1870
2493
|
[() => CodeInterpreterResult$, [() => AccessDeniedException$, 0], [() => ConflictException$, 0], [() => InternalServerException$, 0], [() => ResourceNotFoundException$, 0], [() => ServiceQuotaExceededException$, 0], [() => ThrottlingException$, 0], [() => ValidationException$, 0]]
|
|
1871
2494
|
];
|
|
1872
2495
|
export var Content$ = [4, n0, _Con,
|
|
@@ -1879,6 +2502,11 @@ export var Context$ = [4, n0, _Cont,
|
|
|
1879
2502
|
[_sCp],
|
|
1880
2503
|
[() => SpanContext$]
|
|
1881
2504
|
];
|
|
2505
|
+
export var DataSourceConfig$ = [4, n0, _DSC,
|
|
2506
|
+
0,
|
|
2507
|
+
[_cWL],
|
|
2508
|
+
[() => CloudWatchLogsSource$]
|
|
2509
|
+
];
|
|
1882
2510
|
export var EvaluationContent$ = [4, n0, _EC,
|
|
1883
2511
|
0,
|
|
1884
2512
|
[_te],
|
|
@@ -1889,6 +2517,11 @@ export var EvaluationInput$ = [4, n0, _EI,
|
|
|
1889
2517
|
[_sSess],
|
|
1890
2518
|
[[() => Spans, 0]]
|
|
1891
2519
|
];
|
|
2520
|
+
export var EvaluationMetadata$ = [4, n0, _EMv,
|
|
2521
|
+
0,
|
|
2522
|
+
[_sMes],
|
|
2523
|
+
[() => SessionMetadataList]
|
|
2524
|
+
];
|
|
1892
2525
|
export var EvaluationTarget$ = [4, n0, _ET,
|
|
1893
2526
|
0,
|
|
1894
2527
|
[_sIpa, _tIr],
|
|
@@ -1899,19 +2532,34 @@ export var ExtractionJobMessages$ = [4, n0, _EJMx,
|
|
|
1899
2532
|
[_mL],
|
|
1900
2533
|
[() => MessagesList]
|
|
1901
2534
|
];
|
|
2535
|
+
export var FilterValue$ = [4, n0, _FV,
|
|
2536
|
+
0,
|
|
2537
|
+
[_sVt, _dV, _bVo],
|
|
2538
|
+
[0, 1, 2]
|
|
2539
|
+
];
|
|
2540
|
+
export var GroundTruthSource$ = [4, n0, _GTS,
|
|
2541
|
+
0,
|
|
2542
|
+
[_in],
|
|
2543
|
+
[() => InlineGroundTruth$]
|
|
2544
|
+
];
|
|
2545
|
+
export var GroundTruthTurnInput$ = [4, n0, _GTTI,
|
|
2546
|
+
0,
|
|
2547
|
+
[_prom],
|
|
2548
|
+
[0]
|
|
2549
|
+
];
|
|
1902
2550
|
export var HarnessContentBlock$ = [4, n0, _HCBa,
|
|
1903
2551
|
0,
|
|
1904
|
-
[_te, _tUo,
|
|
2552
|
+
[_te, _tUo, _tRo, _rCe],
|
|
1905
2553
|
[[() => SensitiveText, 0], [() => HarnessToolUseBlock$, 0], [() => HarnessToolResultBlock$, 0], [() => HarnessReasoningContentBlock$, 0]]
|
|
1906
2554
|
];
|
|
1907
2555
|
export var HarnessContentBlockDelta$ = [4, n0, _HCBD,
|
|
1908
2556
|
0,
|
|
1909
|
-
[_te, _tUo,
|
|
2557
|
+
[_te, _tUo, _tRo, _rCe],
|
|
1910
2558
|
[[() => SensitiveText, 0], [() => HarnessToolUseBlockDelta$, 0], [() => HarnessToolResultBlocksDelta, 0], [() => HarnessReasoningContentBlockDelta$, 0]]
|
|
1911
2559
|
];
|
|
1912
2560
|
export var HarnessContentBlockStart$ = [4, n0, _HCBS,
|
|
1913
2561
|
0,
|
|
1914
|
-
[_tUo,
|
|
2562
|
+
[_tUo, _tRo],
|
|
1915
2563
|
[() => HarnessToolUseBlockStart$, () => HarnessToolResultBlockStart$]
|
|
1916
2564
|
];
|
|
1917
2565
|
export var HarnessGatewayOutboundAuth$ = [4, n0, _HGOA,
|
|
@@ -1926,12 +2574,12 @@ export var HarnessModelConfiguration$ = [4, n0, _HMC,
|
|
|
1926
2574
|
];
|
|
1927
2575
|
export var HarnessReasoningContentBlock$ = [4, n0, _HRCB,
|
|
1928
2576
|
8,
|
|
1929
|
-
[_rT,
|
|
2577
|
+
[_rT, _rCed],
|
|
1930
2578
|
[[() => HarnessReasoningTextBlock$, 0], 21]
|
|
1931
2579
|
];
|
|
1932
2580
|
export var HarnessReasoningContentBlockDelta$ = [4, n0, _HRCBD,
|
|
1933
2581
|
8,
|
|
1934
|
-
[_te,
|
|
2582
|
+
[_te, _rCed, _sig],
|
|
1935
2583
|
[0, [() => Body, 0], 0]
|
|
1936
2584
|
];
|
|
1937
2585
|
export var HarnessSkill$ = [4, n0, _HSa,
|
|
@@ -1961,12 +2609,12 @@ export var HarnessToolResultContentBlock$ = [4, n0, _HTRCBa,
|
|
|
1961
2609
|
];
|
|
1962
2610
|
export var InvokeAgentRuntimeCommandStreamOutput$ = [4, n0, _IARCSO,
|
|
1963
2611
|
{ [_st]: 1 },
|
|
1964
|
-
[_ch, _aDE, _iSE, _rNFE, _sQEE,
|
|
2612
|
+
[_ch, _aDE, _iSE, _rNFE, _sQEE, _tEh, _vE, _rCE],
|
|
1965
2613
|
[() => ResponseChunk$, [() => AccessDeniedException$, 0], [() => InternalServerException$, 0], [() => ResourceNotFoundException$, 0], [() => ServiceQuotaExceededException$, 0], [() => ThrottlingException$, 0], [() => ValidationException$, 0], [() => RuntimeClientError$, 0]]
|
|
1966
2614
|
];
|
|
1967
2615
|
export var InvokeHarnessStreamOutput$ = [4, n0, _IHSO,
|
|
1968
2616
|
{ [_st]: 1 },
|
|
1969
|
-
[_mSe, _cBS, _cBD, _cBSo, _mSes,
|
|
2617
|
+
[_mSe, _cBS, _cBD, _cBSo, _mSes, _met, _iSE, _vE, _rCE],
|
|
1970
2618
|
[() => HarnessMessageStartEvent$, () => HarnessContentBlockStartEvent$, [() => HarnessContentBlockDeltaEvent$, 0], () => HarnessContentBlockStopEvent$, () => HarnessMessageStopEvent$, () => HarnessMetadataEvent$, [() => InternalServerException$, 0], [() => ValidationException$, 0], [() => RuntimeClientError$, 0]]
|
|
1971
2619
|
];
|
|
1972
2620
|
export var LeftExpression$ = [4, n0, _LE,
|
|
@@ -1984,6 +2632,11 @@ export var MetadataValue$ = [4, n0, _MV,
|
|
|
1984
2632
|
[_sVt],
|
|
1985
2633
|
[0]
|
|
1986
2634
|
];
|
|
2635
|
+
export var OutputConfig$ = [4, n0, _OC,
|
|
2636
|
+
0,
|
|
2637
|
+
[_cWC],
|
|
2638
|
+
[() => CloudWatchOutputConfig$]
|
|
2639
|
+
];
|
|
1987
2640
|
export var PayloadType$ = [4, n0, _PT,
|
|
1988
2641
|
0,
|
|
1989
2642
|
[_conv, _bl],
|
|
@@ -1999,6 +2652,16 @@ export var ProxyCredentials$ = [4, n0, _PCr,
|
|
|
1999
2652
|
[_bAa],
|
|
2000
2653
|
[() => BasicAuth$]
|
|
2001
2654
|
];
|
|
2655
|
+
export var RecommendationConfig$ = [4, n0, _RCec,
|
|
2656
|
+
0,
|
|
2657
|
+
[_sPRC, _tDRC],
|
|
2658
|
+
[[() => SystemPromptRecommendationConfig$, 0], [() => ToolDescriptionRecommendationConfig$, 0]]
|
|
2659
|
+
];
|
|
2660
|
+
export var RecommendationResult$ = [4, n0, _RR,
|
|
2661
|
+
0,
|
|
2662
|
+
[_sPRR, _tDRR],
|
|
2663
|
+
[[() => SystemPromptRecommendationResult$, 0], [() => ToolDescriptionRecommendationResult$, 0]]
|
|
2664
|
+
];
|
|
2002
2665
|
export var ResourceLocation$ = [4, n0, _RL,
|
|
2003
2666
|
0,
|
|
2004
2667
|
[_s_],
|
|
@@ -2014,6 +2677,21 @@ export var StreamUpdate$ = [4, n0, _SU,
|
|
|
2014
2677
|
[_aSU],
|
|
2015
2678
|
[() => AutomationStreamUpdate$]
|
|
2016
2679
|
];
|
|
2680
|
+
export var SystemPromptConfig$ = [4, n0, _SPC,
|
|
2681
|
+
0,
|
|
2682
|
+
[_te, _cB],
|
|
2683
|
+
[[() => SystemPromptText, 0], () => SystemPromptConfigurationBundle$]
|
|
2684
|
+
];
|
|
2685
|
+
export var ToolDescriptionConfig$ = [4, n0, _TDC,
|
|
2686
|
+
0,
|
|
2687
|
+
[_te],
|
|
2688
|
+
[[() => ToolDescriptionText, 0]]
|
|
2689
|
+
];
|
|
2690
|
+
export var ToolDescriptionSource$ = [4, n0, _TDS,
|
|
2691
|
+
0,
|
|
2692
|
+
[_tDT, _cB],
|
|
2693
|
+
[[() => ToolDescriptionTextInput$, 0], () => ToolDescriptionConfigurationBundle$]
|
|
2694
|
+
];
|
|
2017
2695
|
export var UserIdentifier$ = [4, n0, _UI,
|
|
2018
2696
|
0,
|
|
2019
2697
|
[_uT, _uIs],
|
|
@@ -2031,21 +2709,39 @@ export var BatchUpdateMemoryRecords$ = [9, n0, _BUMR,
|
|
|
2031
2709
|
export var CompleteResourceTokenAuth$ = [9, n0, _CRTA,
|
|
2032
2710
|
{ [_ht]: ["POST", "/identities/CompleteResourceTokenAuth", 200] }, () => CompleteResourceTokenAuthRequest$, () => CompleteResourceTokenAuthResponse$
|
|
2033
2711
|
];
|
|
2712
|
+
export var CreateABTest$ = [9, n0, _CABT,
|
|
2713
|
+
{ [_ht]: ["POST", "/ab-tests", 202] }, () => CreateABTestRequest$, () => CreateABTestResponse$
|
|
2714
|
+
];
|
|
2034
2715
|
export var CreateEvent$ = [9, n0, _CEr,
|
|
2035
2716
|
{ [_ht]: ["POST", "/memories/{memoryId}/events", 201] }, () => CreateEventInput$, () => CreateEventOutput$
|
|
2036
2717
|
];
|
|
2718
|
+
export var DeleteABTest$ = [9, n0, _DABT,
|
|
2719
|
+
{ [_ht]: ["DELETE", "/ab-tests/{abTestId}", 202] }, () => DeleteABTestRequest$, () => DeleteABTestResponse$
|
|
2720
|
+
];
|
|
2721
|
+
export var DeleteBatchEvaluation$ = [9, n0, _DBE,
|
|
2722
|
+
{ [_ht]: ["DELETE", "/evaluations/batch-evaluate/{batchEvaluationId}", 202] }, () => DeleteBatchEvaluationRequest$, () => DeleteBatchEvaluationResponse$
|
|
2723
|
+
];
|
|
2037
2724
|
export var DeleteEvent$ = [9, n0, _DE,
|
|
2038
2725
|
{ [_ht]: ["DELETE", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200] }, () => DeleteEventInput$, () => DeleteEventOutput$
|
|
2039
2726
|
];
|
|
2040
2727
|
export var DeleteMemoryRecord$ = [9, n0, _DMR,
|
|
2041
2728
|
{ [_ht]: ["DELETE", "/memories/{memoryId}/memoryRecords/{memoryRecordId}", 200] }, () => DeleteMemoryRecordInput$, () => DeleteMemoryRecordOutput$
|
|
2042
2729
|
];
|
|
2043
|
-
export var
|
|
2730
|
+
export var DeleteRecommendation$ = [9, n0, _DR,
|
|
2731
|
+
{ [_ht]: ["DELETE", "/recommendations/{recommendationId}", 202] }, () => DeleteRecommendationRequest$, () => DeleteRecommendationResponse$
|
|
2732
|
+
];
|
|
2733
|
+
export var Evaluate$ = [9, n0, _Eva,
|
|
2044
2734
|
{ [_ht]: ["POST", "/evaluations/evaluate/{evaluatorId}", 200] }, () => EvaluateRequest$, () => EvaluateResponse$
|
|
2045
2735
|
];
|
|
2736
|
+
export var GetABTest$ = [9, n0, _GABT,
|
|
2737
|
+
{ [_ht]: ["GET", "/ab-tests/{abTestId}", 200] }, () => GetABTestRequest$, () => GetABTestResponse$
|
|
2738
|
+
];
|
|
2046
2739
|
export var GetAgentCard$ = [9, n0, _GAC,
|
|
2047
2740
|
{ [_ht]: ["GET", "/runtimes/{agentRuntimeArn}/invocations/.well-known/agent-card.json", 200] }, () => GetAgentCardRequest$, () => GetAgentCardResponse$
|
|
2048
2741
|
];
|
|
2742
|
+
export var GetBatchEvaluation$ = [9, n0, _GBE,
|
|
2743
|
+
{ [_ht]: ["GET", "/evaluations/batch-evaluate/{batchEvaluationId}", 200] }, () => GetBatchEvaluationRequest$, () => GetBatchEvaluationResponse$
|
|
2744
|
+
];
|
|
2049
2745
|
export var GetBrowserSession$ = [9, n0, _GBS,
|
|
2050
2746
|
{ [_ht]: ["GET", "/browsers/{browserIdentifier}/sessions/get", 200] }, () => GetBrowserSessionRequest$, () => GetBrowserSessionResponse$
|
|
2051
2747
|
];
|
|
@@ -2058,6 +2754,9 @@ export var GetEvent$ = [9, n0, _GE,
|
|
|
2058
2754
|
export var GetMemoryRecord$ = [9, n0, _GMR,
|
|
2059
2755
|
{ [_ht]: ["GET", "/memories/{memoryId}/memoryRecord/{memoryRecordId}", 200] }, () => GetMemoryRecordInput$, () => GetMemoryRecordOutput$
|
|
2060
2756
|
];
|
|
2757
|
+
export var GetRecommendation$ = [9, n0, _GR,
|
|
2758
|
+
{ [_ht]: ["GET", "/recommendations/{recommendationId}", 200] }, () => GetRecommendationRequest$, () => GetRecommendationResponse$
|
|
2759
|
+
];
|
|
2061
2760
|
export var GetResourceApiKey$ = [9, n0, _GRAK,
|
|
2062
2761
|
{ [_ht]: ["POST", "/identities/api-key", 200] }, () => GetResourceApiKeyRequest$, () => GetResourceApiKeyResponse$
|
|
2063
2762
|
];
|
|
@@ -2088,9 +2787,15 @@ export var InvokeCodeInterpreter$ = [9, n0, _ICI,
|
|
|
2088
2787
|
export var InvokeHarness$ = [9, n0, _IH,
|
|
2089
2788
|
{ [_ht]: ["POST", "/harnesses/invoke", 200] }, () => InvokeHarnessRequest$, () => InvokeHarnessResponse$
|
|
2090
2789
|
];
|
|
2790
|
+
export var ListABTests$ = [9, n0, _LABT,
|
|
2791
|
+
{ [_ht]: ["GET", "/ab-tests", 200] }, () => ListABTestsRequest$, () => ListABTestsResponse$
|
|
2792
|
+
];
|
|
2091
2793
|
export var ListActors$ = [9, n0, _LA,
|
|
2092
2794
|
{ [_ht]: ["POST", "/memories/{memoryId}/actors", 200] }, () => ListActorsInput$, () => ListActorsOutput$
|
|
2093
2795
|
];
|
|
2796
|
+
export var ListBatchEvaluations$ = [9, n0, _LBE,
|
|
2797
|
+
{ [_ht]: ["GET", "/evaluations/batch-evaluate", 200] }, () => ListBatchEvaluationsRequest$, () => ListBatchEvaluationsResponse$
|
|
2798
|
+
];
|
|
2094
2799
|
export var ListBrowserSessions$ = [9, n0, _LBS,
|
|
2095
2800
|
{ [_ht]: ["POST", "/browsers/{browserIdentifier}/sessions/list", 200] }, () => ListBrowserSessionsRequest$, () => ListBrowserSessionsResponse$
|
|
2096
2801
|
];
|
|
@@ -2106,6 +2811,9 @@ export var ListMemoryExtractionJobs$ = [9, n0, _LMEJ,
|
|
|
2106
2811
|
export var ListMemoryRecords$ = [9, n0, _LMR,
|
|
2107
2812
|
{ [_ht]: ["POST", "/memories/{memoryId}/memoryRecords", 200] }, () => ListMemoryRecordsInput$, () => ListMemoryRecordsOutput$
|
|
2108
2813
|
];
|
|
2814
|
+
export var ListRecommendations$ = [9, n0, _LR,
|
|
2815
|
+
{ [_ht]: ["GET", "/recommendations", 200] }, () => ListRecommendationsRequest$, () => ListRecommendationsResponse$
|
|
2816
|
+
];
|
|
2109
2817
|
export var ListSessions$ = [9, n0, _LS,
|
|
2110
2818
|
{ [_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions", 200] }, () => ListSessionsInput$, () => ListSessionsOutput$
|
|
2111
2819
|
];
|
|
@@ -2115,9 +2823,12 @@ export var RetrieveMemoryRecords$ = [9, n0, _RMR,
|
|
|
2115
2823
|
export var SaveBrowserSessionProfile$ = [9, n0, _SBSP,
|
|
2116
2824
|
{ [_ht]: ["PUT", "/browser-profiles/{profileIdentifier}/save", 200] }, () => SaveBrowserSessionProfileRequest$, () => SaveBrowserSessionProfileResponse$
|
|
2117
2825
|
];
|
|
2118
|
-
export var SearchRegistryRecords$ = [9, n0,
|
|
2826
|
+
export var SearchRegistryRecords$ = [9, n0, _SRRe,
|
|
2119
2827
|
{ [_ht]: ["POST", "/registry-records/search", 200] }, () => SearchRegistryRecordsRequest$, () => SearchRegistryRecordsResponse$
|
|
2120
2828
|
];
|
|
2829
|
+
export var StartBatchEvaluation$ = [9, n0, _SBE,
|
|
2830
|
+
{ [_ht]: ["POST", "/evaluations/batch-evaluate", 202] }, () => StartBatchEvaluationRequest$, () => StartBatchEvaluationResponse$
|
|
2831
|
+
];
|
|
2121
2832
|
export var StartBrowserSession$ = [9, n0, _SBS,
|
|
2122
2833
|
{ [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/start", 200] }, () => StartBrowserSessionRequest$, () => StartBrowserSessionResponse$
|
|
2123
2834
|
];
|
|
@@ -2127,6 +2838,12 @@ export var StartCodeInterpreterSession$ = [9, n0, _SCIS,
|
|
|
2127
2838
|
export var StartMemoryExtractionJob$ = [9, n0, _SMEJ,
|
|
2128
2839
|
{ [_ht]: ["POST", "/memories/{memoryId}/extractionJobs/start", 200] }, () => StartMemoryExtractionJobInput$, () => StartMemoryExtractionJobOutput$
|
|
2129
2840
|
];
|
|
2841
|
+
export var StartRecommendation$ = [9, n0, _SRt,
|
|
2842
|
+
{ [_ht]: ["POST", "/recommendations", 202] }, () => StartRecommendationRequest$, () => StartRecommendationResponse$
|
|
2843
|
+
];
|
|
2844
|
+
export var StopBatchEvaluation$ = [9, n0, _SBEt,
|
|
2845
|
+
{ [_ht]: ["POST", "/evaluations/batch-evaluate/{batchEvaluationId}/stop", 202] }, () => StopBatchEvaluationRequest$, () => StopBatchEvaluationResponse$
|
|
2846
|
+
];
|
|
2130
2847
|
export var StopBrowserSession$ = [9, n0, _SBSt,
|
|
2131
2848
|
{ [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/stop", 200] }, () => StopBrowserSessionRequest$, () => StopBrowserSessionResponse$
|
|
2132
2849
|
];
|
|
@@ -2136,6 +2853,9 @@ export var StopCodeInterpreterSession$ = [9, n0, _SCISt,
|
|
|
2136
2853
|
export var StopRuntimeSession$ = [9, n0, _SRS,
|
|
2137
2854
|
{ [_ht]: ["POST", "/runtimes/{agentRuntimeArn}/stopruntimesession", 200] }, () => StopRuntimeSessionRequest$, () => StopRuntimeSessionResponse$
|
|
2138
2855
|
];
|
|
2856
|
+
export var UpdateABTest$ = [9, n0, _UABT,
|
|
2857
|
+
{ [_ht]: ["PUT", "/ab-tests/{abTestId}", 202] }, () => UpdateABTestRequest$, () => UpdateABTestResponse$
|
|
2858
|
+
];
|
|
2139
2859
|
export var UpdateBrowserStream$ = [9, n0, _UBS,
|
|
2140
2860
|
{ [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/streams/update", 200] }, () => UpdateBrowserStreamRequest$, () => UpdateBrowserStreamResponse$
|
|
2141
2861
|
];
|