@aws-sdk/client-bedrock-agentcore 3.1038.0 → 3.1040.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 +275 -0
- package/dist-cjs/schemas/schemas_0.js +851 -99
- 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 +60 -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 +843 -93
- package/dist-types/BedrockAgentCore.d.ts +122 -0
- package/dist-types/BedrockAgentCoreClient.d.ts +16 -2
- package/dist-types/commands/BatchCreateMemoryRecordsCommand.d.ts +10 -0
- package/dist-types/commands/BatchUpdateMemoryRecordsCommand.d.ts +10 -0
- 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/GetMemoryRecordCommand.d.ts +7 -2
- package/dist-types/commands/GetRecommendationCommand.d.ts +220 -0
- package/dist-types/commands/GetResourceOauth2TokenCommand.d.ts +7 -1
- package/dist-types/commands/ListABTestsCommand.d.ts +103 -0
- package/dist-types/commands/ListBatchEvaluationsCommand.d.ts +126 -0
- package/dist-types/commands/ListMemoryRecordsCommand.d.ts +25 -2
- package/dist-types/commands/ListRecommendationsCommand.d.ts +100 -0
- package/dist-types/commands/RetrieveMemoryRecordsCommand.d.ts +16 -6
- 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 +116 -0
- package/dist-types/models/models_0.d.ts +2595 -386
- package/dist-types/models/models_1.d.ts +147 -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 +99 -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 +73 -0
- package/dist-types/ts3.4/models/models_0.d.ts +801 -43
- package/dist-types/ts3.4/models/models_1.d.ts +40 -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 +99 -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";
|
|
@@ -239,8 +305,12 @@ const _MRCI = "MemoryRecordCreateInput";
|
|
|
239
305
|
const _MRCIL = "MemoryRecordsCreateInputList";
|
|
240
306
|
const _MRDI = "MemoryRecordDeleteInput";
|
|
241
307
|
const _MRDIL = "MemoryRecordsDeleteInputList";
|
|
308
|
+
const _MRLE = "MemoryRecordLeftExpression";
|
|
309
|
+
const _MRMM = "MemoryRecordMetadataMap";
|
|
310
|
+
const _MRMV = "MemoryRecordMetadataValue";
|
|
242
311
|
const _MRO = "MemoryRecordOutput";
|
|
243
312
|
const _MROL = "MemoryRecordsOutputList";
|
|
313
|
+
const _MRRE = "MemoryRecordRightExpression";
|
|
244
314
|
const _MRS = "MemoryRecordSummary";
|
|
245
315
|
const _MRSL = "MemoryRecordSummaryList";
|
|
246
316
|
const _MRUI = "MemoryRecordUpdateInput";
|
|
@@ -252,28 +322,45 @@ const _MV = "MetadataValue";
|
|
|
252
322
|
const _OACP = "OAuthCredentialProvider";
|
|
253
323
|
const _OACPV = "OAuthCustomParametersValue";
|
|
254
324
|
const _OACPu = "OAuthCustomParameters";
|
|
325
|
+
const _OC = "OutputConfig";
|
|
255
326
|
const _P = "Proxies";
|
|
256
327
|
const _PB = "ProxyBypass";
|
|
257
328
|
const _PC = "ProxyConfiguration";
|
|
258
329
|
const _PCr = "ProxyCredentials";
|
|
259
330
|
const _PT = "PayloadType";
|
|
260
331
|
const _PTL = "PayloadTypeList";
|
|
332
|
+
const _PVOEC = "PerVariantOnlineEvaluationConfig";
|
|
333
|
+
const _PVOECL = "PerVariantOnlineEvaluationConfigList";
|
|
261
334
|
const _Pr = "Proxy";
|
|
262
335
|
const _RC = "ResourceContent";
|
|
263
336
|
const _RCE = "RetryableConflictException";
|
|
264
337
|
const _RCEu = "RuntimeClientError";
|
|
265
338
|
const _RCe = "ResponseChunk";
|
|
339
|
+
const _RCec = "RecommendationConfig";
|
|
266
340
|
const _RE = "RightExpression";
|
|
341
|
+
const _REC = "RecommendationEvaluationConfig";
|
|
342
|
+
const _REL = "RecommendationEvaluatorList";
|
|
343
|
+
const _RER = "RecommendationEvaluatorReference";
|
|
267
344
|
const _RL = "ResourceLocation";
|
|
268
345
|
const _RMR = "RetrieveMemoryRecords";
|
|
269
346
|
const _RMRI = "RetrieveMemoryRecordsInput";
|
|
270
347
|
const _RMRO = "RetrieveMemoryRecordsOutput";
|
|
271
348
|
const _RNFE = "ResourceNotFoundException";
|
|
349
|
+
const _RR = "RecommendationResult";
|
|
350
|
+
const _RRCB = "RecommendationResultConfigurationBundle";
|
|
272
351
|
const _RRS = "RegistryRecordSummary";
|
|
273
352
|
const _RRSL = "RegistryRecordSummaryList";
|
|
274
353
|
const _RS = "ResponseStream";
|
|
354
|
+
const _RSL = "RecommendationSummaryList";
|
|
355
|
+
const _RSe = "RecommendationSummary";
|
|
275
356
|
const _S = "State";
|
|
276
357
|
const _SA = "ScreenshotArguments";
|
|
358
|
+
const _SBE = "StartBatchEvaluation";
|
|
359
|
+
const _SBER = "StartBatchEvaluationRequest";
|
|
360
|
+
const _SBERt = "StartBatchEvaluationResponse";
|
|
361
|
+
const _SBERto = "StopBatchEvaluationRequest";
|
|
362
|
+
const _SBERtop = "StopBatchEvaluationResponse";
|
|
363
|
+
const _SBEt = "StopBatchEvaluation";
|
|
277
364
|
const _SBS = "StartBrowserSession";
|
|
278
365
|
const _SBSP = "SaveBrowserSessionProfile";
|
|
279
366
|
const _SBSPR = "SaveBrowserSessionProfileRequest";
|
|
@@ -295,6 +382,7 @@ const _SD = "ServerDefinition";
|
|
|
295
382
|
const _SDk = "SkillDefinition";
|
|
296
383
|
const _SE = "ServiceException";
|
|
297
384
|
const _SF = "SessionFilter";
|
|
385
|
+
const _SFC = "SessionFilterConfig";
|
|
298
386
|
const _SJ = "SensitiveJson";
|
|
299
387
|
const _SL = "S3Location";
|
|
300
388
|
const _SMD = "SkillMdDefinition";
|
|
@@ -302,14 +390,24 @@ const _SMEJ = "StartMemoryExtractionJob";
|
|
|
302
390
|
const _SMEJI = "StartMemoryExtractionJobInput";
|
|
303
391
|
const _SMEJO = "StartMemoryExtractionJobOutput";
|
|
304
392
|
const _SML = "SecretsManagerLocation";
|
|
393
|
+
const _SMLe = "SessionMetadataList";
|
|
394
|
+
const _SMS = "SessionMetadataShape";
|
|
395
|
+
const _SPC = "SystemPromptConfig";
|
|
396
|
+
const _SPCB = "SystemPromptConfigurationBundle";
|
|
397
|
+
const _SPRC = "SystemPromptRecommendationConfig";
|
|
398
|
+
const _SPRR = "SystemPromptRecommendationResult";
|
|
399
|
+
const _SPT = "SystemPromptText";
|
|
305
400
|
const _SQEE = "ServiceQuotaExceededException";
|
|
306
401
|
const _SR = "ScreenshotResult";
|
|
307
|
-
const _SRR = "
|
|
402
|
+
const _SRR = "StartRecommendationRequest";
|
|
308
403
|
const _SRRR = "SearchRegistryRecordsRequest";
|
|
309
404
|
const _SRRRe = "SearchRegistryRecordsResponse";
|
|
405
|
+
const _SRRe = "SearchRegistryRecords";
|
|
406
|
+
const _SRRt = "StartRecommendationResponse";
|
|
310
407
|
const _SRS = "StopRuntimeSession";
|
|
311
408
|
const _SRSR = "StopRuntimeSessionRequest";
|
|
312
409
|
const _SRSRt = "StopRuntimeSessionResponse";
|
|
410
|
+
const _SRt = "StartRecommendation";
|
|
313
411
|
const _SS = "SensitiveString";
|
|
314
412
|
const _SSL = "SessionSummaryList";
|
|
315
413
|
const _SSe = "SessionSummary";
|
|
@@ -318,20 +416,40 @@ const _SU = "StreamUpdate";
|
|
|
318
416
|
const _Sp = "Spans";
|
|
319
417
|
const _TA = "ToolArguments";
|
|
320
418
|
const _TD = "ToolsDefinition";
|
|
419
|
+
const _TDC = "ToolDescriptionConfig";
|
|
420
|
+
const _TDCB = "ToolDescriptionConfigurationBundle";
|
|
421
|
+
const _TDI = "ToolDescriptionInput";
|
|
422
|
+
const _TDL = "ToolDescriptionList";
|
|
423
|
+
const _TDO = "ToolDescriptionOutput";
|
|
424
|
+
const _TDRC = "ToolDescriptionRecommendationConfig";
|
|
425
|
+
const _TDRL = "ToolDescriptionResultList";
|
|
426
|
+
const _TDRR = "ToolDescriptionRecommendationResult";
|
|
427
|
+
const _TDS = "ToolDescriptionSource";
|
|
428
|
+
const _TDT = "ToolDescriptionText";
|
|
429
|
+
const _TDTI = "ToolDescriptionTextInput";
|
|
321
430
|
const _TE = "ThrottledException";
|
|
322
431
|
const _TEh = "ThrottlingException";
|
|
432
|
+
const _TR = "TargetRef";
|
|
323
433
|
const _TRSC = "ToolResultStructuredContent";
|
|
324
434
|
const _TU = "TokenUsage";
|
|
435
|
+
const _UABT = "UpdateABTest";
|
|
436
|
+
const _UABTR = "UpdateABTestRequest";
|
|
437
|
+
const _UABTRp = "UpdateABTestResponse";
|
|
325
438
|
const _UBS = "UpdateBrowserStream";
|
|
326
439
|
const _UBSR = "UpdateBrowserStreamRequest";
|
|
327
440
|
const _UBSRp = "UpdateBrowserStreamResponse";
|
|
328
441
|
const _UE = "UnauthorizedException";
|
|
329
442
|
const _UI = "UserIdentifier";
|
|
330
443
|
const _UTT = "UserTokenType";
|
|
444
|
+
const _V = "Variant";
|
|
445
|
+
const _VC = "VariantConfiguration";
|
|
331
446
|
const _VE = "ValidationException";
|
|
332
447
|
const _VEF = "ValidationExceptionField";
|
|
333
448
|
const _VEFL = "ValidationExceptionFieldList";
|
|
449
|
+
const _VL = "VariantList";
|
|
334
450
|
const _VP = "ViewPort";
|
|
451
|
+
const _VR = "VariantResult";
|
|
452
|
+
const _VRL = "VariantResultList";
|
|
335
453
|
const _WITT = "WorkloadIdentityTokenType";
|
|
336
454
|
const _XABARSI = "X-Amzn-Bedrock-AgentCore-Runtime-Session-Id";
|
|
337
455
|
const _XABARUI = "X-Amzn-Bedrock-AgentCore-Runtime-User-Id";
|
|
@@ -341,6 +459,7 @@ const _aC = "agentCard";
|
|
|
341
459
|
const _aCB = "agentCoreBrowser";
|
|
342
460
|
const _aCCI = "agentCoreCodeInterpreter";
|
|
343
461
|
const _aCG = "agentCoreGateway";
|
|
462
|
+
const _aCb = "absoluteChange";
|
|
344
463
|
const _aDE = "accessDeniedException";
|
|
345
464
|
const _aI = "actorId";
|
|
346
465
|
const _aIc = "accountId";
|
|
@@ -352,18 +471,32 @@ const _aS = "automationStream";
|
|
|
352
471
|
const _aSU = "automationStreamUpdate";
|
|
353
472
|
const _aSc = "actorSummaries";
|
|
354
473
|
const _aSg = "agentSkills";
|
|
355
|
-
const
|
|
474
|
+
const _aSv = "averageScore";
|
|
475
|
+
const _aT = "analysisTimestamp";
|
|
476
|
+
const _aTA = "abTestArn";
|
|
477
|
+
const _aTI = "abTestId";
|
|
478
|
+
const _aTb = "abTests";
|
|
479
|
+
const _aTc = "accessToken";
|
|
480
|
+
const _aTg = "agentTraces";
|
|
356
481
|
const _aTl = "allowedTools";
|
|
357
482
|
const _aU = "authorizationUrl";
|
|
358
483
|
const _ac = "accept";
|
|
359
484
|
const _act = "action";
|
|
360
485
|
const _ar = "arguments";
|
|
361
486
|
const _as = "assertions";
|
|
487
|
+
const _au = "audiences";
|
|
362
488
|
const _b = "branch";
|
|
363
|
-
const _bA = "
|
|
489
|
+
const _bA = "bundleArn";
|
|
364
490
|
const _bAa = "basicAuth";
|
|
491
|
+
const _bAr = "browserArn";
|
|
492
|
+
const _bE = "batchEvaluations";
|
|
493
|
+
const _bEA = "batchEvaluationArn";
|
|
494
|
+
const _bEI = "batchEvaluationId";
|
|
495
|
+
const _bEN = "batchEvaluationName";
|
|
365
496
|
const _bI = "browserIdentifier";
|
|
366
497
|
const _bMC = "bedrockModelConfig";
|
|
498
|
+
const _bV = "bundleVersion";
|
|
499
|
+
const _bVo = "booleanValue";
|
|
367
500
|
const _ba = "baggage";
|
|
368
501
|
const _bl = "blob";
|
|
369
502
|
const _bo = "body";
|
|
@@ -372,6 +505,7 @@ const _buc = "bucket";
|
|
|
372
505
|
const _by = "bypass";
|
|
373
506
|
const _c = "client";
|
|
374
507
|
const _cA = "createdAt";
|
|
508
|
+
const _cB = "configurationBundle";
|
|
375
509
|
const _cBD = "contentBlockDelta";
|
|
376
510
|
const _cBI = "contentBlockIndex";
|
|
377
511
|
const _cBS = "contentBlockStart";
|
|
@@ -380,16 +514,22 @@ const _cC = "clickCount";
|
|
|
380
514
|
const _cCl = "clearContext";
|
|
381
515
|
const _cD = "contentDelta";
|
|
382
516
|
const _cE = "conflictException";
|
|
517
|
+
const _cI = "confidenceInterval";
|
|
383
518
|
const _cIA = "codeInterpreterArn";
|
|
384
519
|
const _cII = "codeInterpreterIdentifier";
|
|
520
|
+
const _cL = "cloudwatchLogs";
|
|
385
521
|
const _cP = "customParameters";
|
|
522
|
+
const _cRI = "currentRunId";
|
|
386
523
|
const _cRIT = "cacheReadInputTokens";
|
|
387
|
-
const _cS = "
|
|
524
|
+
const _cS = "controlStats";
|
|
388
525
|
const _cSo = "contentStart";
|
|
389
526
|
const _cSon = "contentStop";
|
|
527
|
+
const _cSu = "customState";
|
|
390
528
|
const _cT = "clientToken";
|
|
391
529
|
const _cTo = "contentType";
|
|
530
|
+
const _cWC = "cloudWatchConfig";
|
|
392
531
|
const _cWIT = "cacheWriteInputTokens";
|
|
532
|
+
const _cWL = "cloudWatchLogs";
|
|
393
533
|
const _ce = "certificates";
|
|
394
534
|
const _ch = "chunk";
|
|
395
535
|
const _co = "content";
|
|
@@ -400,53 +540,68 @@ const _conf = "config";
|
|
|
400
540
|
const _conv = "conversational";
|
|
401
541
|
const _cr = "credentials";
|
|
402
542
|
const _cu = "custom";
|
|
403
|
-
const _d = "
|
|
543
|
+
const _d = "description";
|
|
404
544
|
const _dP = "domainPatterns";
|
|
405
545
|
const _dPi = "directoryPath";
|
|
406
546
|
const _dRU = "defaultReturnUrl";
|
|
547
|
+
const _dSC = "dataSourceConfig";
|
|
407
548
|
const _dT = "descriptorType";
|
|
549
|
+
const _dTV = "dateTimeValue";
|
|
550
|
+
const _dV = "doubleValue";
|
|
408
551
|
const _dX = "deltaX";
|
|
409
552
|
const _dY = "deltaY";
|
|
410
|
-
const
|
|
411
|
-
const
|
|
553
|
+
const _da = "data";
|
|
554
|
+
const _de = "delta";
|
|
412
555
|
const _des = "descriptors";
|
|
413
556
|
const _e = "error";
|
|
414
557
|
const _eA = "evaluatorArn";
|
|
415
558
|
const _eC = "exitCode";
|
|
416
559
|
const _eCr = "errorCode";
|
|
560
|
+
const _eCv = "evaluationConfig";
|
|
561
|
+
const _eD = "errorDetails";
|
|
417
562
|
const _eF = "eventFilter";
|
|
418
563
|
const _eI = "eventId";
|
|
419
564
|
const _eIv = "evaluatorId";
|
|
420
565
|
const _eIva = "evaluationInput";
|
|
421
566
|
const _eJ = "extractionJob";
|
|
422
|
-
const _eM = "
|
|
567
|
+
const _eM = "evaluatorMetrics";
|
|
568
|
+
const _eMr = "errorMessage";
|
|
423
569
|
const _eMv = "eventMetadata";
|
|
570
|
+
const _eMva = "evaluationMetadata";
|
|
424
571
|
const _eN = "evaluatorName";
|
|
572
|
+
const _eOC = "enableOnCreate";
|
|
425
573
|
const _eP = "enterprisePolicies";
|
|
426
574
|
const _ePx = "externalProxy";
|
|
427
575
|
const _eR = "evaluationResults";
|
|
428
576
|
const _eRI = "evaluationReferenceInputs";
|
|
429
577
|
const _eRx = "expectedResponse";
|
|
430
|
-
const
|
|
431
|
-
const
|
|
578
|
+
const _eS = "executionStatus";
|
|
579
|
+
const _eSv = "evaluatorSummaries";
|
|
580
|
+
const _eT = "endTime";
|
|
581
|
+
const _eTv = "eventTimestamp";
|
|
582
|
+
const _eTva = "evaluationTarget";
|
|
432
583
|
const _eTx = "expectedTrajectory";
|
|
433
584
|
const _eTxe = "executionTime";
|
|
434
585
|
const _eX = "endX";
|
|
435
586
|
const _eY = "endY";
|
|
436
|
-
const _ev = "
|
|
437
|
-
const _eve = "
|
|
587
|
+
const _ev = "evaluators";
|
|
588
|
+
const _eve = "event";
|
|
589
|
+
const _even = "events";
|
|
438
590
|
const _ex = "explanation";
|
|
439
591
|
const _ext = "extensions";
|
|
440
|
-
const _f = "
|
|
592
|
+
const _f = "filters";
|
|
441
593
|
const _fA = "forceAuthentication";
|
|
594
|
+
const _fC = "filterConfig";
|
|
442
595
|
const _fL = "fieldList";
|
|
443
596
|
const _fR = "failedRecords";
|
|
444
597
|
const _fRa = "failureReason";
|
|
445
|
-
const _fi = "
|
|
598
|
+
const _fi = "filter";
|
|
446
599
|
const _fo = "format";
|
|
447
600
|
const _gA = "gatewayArn";
|
|
601
|
+
const _gF = "gatewayFilter";
|
|
448
602
|
const _gMC = "geminiModelConfig";
|
|
449
603
|
const _gT = "grantType";
|
|
604
|
+
const _gTr = "groundTruth";
|
|
450
605
|
const _h = "headers";
|
|
451
606
|
const _hA = "harnessArn";
|
|
452
607
|
const _hE = "httpError";
|
|
@@ -463,8 +618,10 @@ const _iPB = "includeParentBranches";
|
|
|
463
618
|
const _iRIF = "ignoredReferenceInputFields";
|
|
464
619
|
const _iS = "inputSchema";
|
|
465
620
|
const _iSE = "internalServerException";
|
|
621
|
+
const _iSs = "isSignificant";
|
|
466
622
|
const _iT = "idempotencyToken";
|
|
467
623
|
const _iTn = "inputTokens";
|
|
624
|
+
const _in = "inline";
|
|
468
625
|
const _it = "items";
|
|
469
626
|
const _j = "jobs";
|
|
470
627
|
const _jI = "jobId";
|
|
@@ -476,15 +633,21 @@ const _kS = "keyShortcut";
|
|
|
476
633
|
const _kT = "keyType";
|
|
477
634
|
const _ke = "keys";
|
|
478
635
|
const _l = "location";
|
|
636
|
+
const _lGA = "logGroupArns";
|
|
637
|
+
const _lGN = "logGroupNames";
|
|
638
|
+
const _lGNo = "logGroupName";
|
|
479
639
|
const _lM = "latencyMs";
|
|
640
|
+
const _lSN = "logStreamName";
|
|
480
641
|
const _lUA = "lastUpdatedAt";
|
|
481
642
|
const _lVS = "liveViewStream";
|
|
482
643
|
const _la = "label";
|
|
483
644
|
const _lan = "language";
|
|
484
645
|
const _le = "left";
|
|
646
|
+
const _lo = "lower";
|
|
485
647
|
const _m = "message";
|
|
486
648
|
const _mC = "mouseClick";
|
|
487
649
|
const _mD = "mouseDrag";
|
|
650
|
+
const _mDEA = "maxDurationExpiresAt";
|
|
488
651
|
const _mF = "metadataFilters";
|
|
489
652
|
const _mI = "memoryId";
|
|
490
653
|
const _mIa = "maxIterations";
|
|
@@ -507,85 +670,120 @@ const _mT = "mimeType";
|
|
|
507
670
|
const _mTa = "maxTokens";
|
|
508
671
|
const _mV = "metadataValue";
|
|
509
672
|
const _mc = "mcp";
|
|
510
|
-
const _me = "
|
|
673
|
+
const _me = "mean";
|
|
511
674
|
const _mes = "messages";
|
|
512
|
-
const _met = "
|
|
675
|
+
const _met = "metadata";
|
|
676
|
+
const _metr = "metrics";
|
|
513
677
|
const _mo = "model";
|
|
514
678
|
const _n = "name";
|
|
679
|
+
const _nOSC = "numberOfSessionsCompleted";
|
|
680
|
+
const _nOSF = "numberOfSessionsFailed";
|
|
681
|
+
const _nOSI = "numberOfSessionsIgnored";
|
|
682
|
+
const _nOSIP = "numberOfSessionsInProgress";
|
|
515
683
|
const _nP = "namespacePath";
|
|
516
684
|
const _nT = "nextToken";
|
|
685
|
+
const _nV = "numberValue";
|
|
517
686
|
const _na = "namespace";
|
|
518
687
|
const _nam = "namespaces";
|
|
519
688
|
const _no = "none";
|
|
520
689
|
const _o = "operator";
|
|
521
690
|
const _oA = "outboundAuth";
|
|
522
691
|
const _oAMC = "openAiModelConfig";
|
|
692
|
+
const _oC = "outputConfig";
|
|
693
|
+
const _oECA = "onlineEvaluationConfigArn";
|
|
523
694
|
const _oF = "oauth2Flow";
|
|
524
695
|
const _oT = "outputTokens";
|
|
525
696
|
const _oa = "oauth";
|
|
526
697
|
const _p = "payload";
|
|
527
698
|
const _pA = "providerArn";
|
|
528
699
|
const _pC = "profileConfiguration";
|
|
700
|
+
const _pCe = "percentChange";
|
|
529
701
|
const _pCr = "proxyConfiguration";
|
|
530
702
|
const _pI = "profileIdentifier";
|
|
531
703
|
const _pV = "protocolVersion";
|
|
704
|
+
const _pVOEC = "perVariantOnlineEvaluationConfig";
|
|
705
|
+
const _pVa = "pValue";
|
|
532
706
|
const _pa = "path";
|
|
533
707
|
const _pat = "paths";
|
|
534
708
|
const _po = "port";
|
|
535
709
|
const _pr = "presses";
|
|
536
710
|
const _pre = "prefix";
|
|
537
711
|
const _pro = "proxies";
|
|
712
|
+
const _prom = "prompt";
|
|
538
713
|
const _q = "qualifier";
|
|
539
714
|
const _r = "reason";
|
|
540
|
-
const _rA = "
|
|
541
|
-
const _rAe = "
|
|
542
|
-
const
|
|
715
|
+
const _rA = "roleArn";
|
|
716
|
+
const _rAe = "recommendationArn";
|
|
717
|
+
const _rAec = "recordArn";
|
|
718
|
+
const _rAeg = "registryArn";
|
|
719
|
+
const _rC = "recommendationConfig";
|
|
543
720
|
const _rCE = "runtimeClientError";
|
|
544
721
|
const _rCPN = "resourceCredentialProviderName";
|
|
545
|
-
const _rCe = "
|
|
722
|
+
const _rCe = "reasoningContent";
|
|
723
|
+
const _rCed = "redactedContent";
|
|
546
724
|
const _rEI = "rootEventId";
|
|
547
|
-
const _rI = "
|
|
548
|
-
const _rIe = "
|
|
725
|
+
const _rI = "recommendationId";
|
|
726
|
+
const _rIe = "requestIdentifier";
|
|
727
|
+
const _rIec = "recordId";
|
|
549
728
|
const _rIeg = "registryIds";
|
|
550
729
|
const _rM = "remoteMcp";
|
|
551
730
|
const _rNFE = "resourceNotFoundException";
|
|
552
731
|
const _rORU = "resourceOauth2ReturnUrl";
|
|
553
|
-
const _rR = "
|
|
732
|
+
const _rR = "recommendationResult";
|
|
733
|
+
const _rRe = "registryRecords";
|
|
734
|
+
const _rS = "recommendationSummaries";
|
|
554
735
|
const _rSI = "runtimeSessionId";
|
|
736
|
+
const _rSP = "recommendedSystemPrompt";
|
|
555
737
|
const _rT = "reasoningText";
|
|
738
|
+
const _rTD = "recommendedToolDescription";
|
|
556
739
|
const _rUI = "runtimeUserId";
|
|
557
740
|
const _re = "records";
|
|
558
741
|
const _res = "resource";
|
|
742
|
+
const _reso = "resources";
|
|
559
743
|
const _resp = "response";
|
|
560
|
-
const _resu = "
|
|
744
|
+
const _resu = "results";
|
|
745
|
+
const _resul = "result";
|
|
561
746
|
const _ri = "right";
|
|
562
747
|
const _ro = "role";
|
|
563
|
-
const _ru = "
|
|
748
|
+
const _ru = "rule";
|
|
749
|
+
const _run = "runtime";
|
|
564
750
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockagentcore";
|
|
565
751
|
const _sA = "secretArn";
|
|
752
|
+
const _sAt = "startedAt";
|
|
753
|
+
const _sAto = "stoppedAt";
|
|
566
754
|
const _sC = "structuredContent";
|
|
567
755
|
const _sCe = "searchCriteria";
|
|
568
756
|
const _sCp = "spanContext";
|
|
569
757
|
const _sCt = "statusCode";
|
|
570
758
|
const _sD = "skillDefinition";
|
|
571
759
|
const _sE = "streamEndpoint";
|
|
760
|
+
const _sF = "statusFilter";
|
|
572
761
|
const _sI = "sessionId";
|
|
762
|
+
const _sIe = "sessionIds";
|
|
573
763
|
const _sIp = "spanId";
|
|
574
764
|
const _sIpa = "spanIds";
|
|
575
765
|
const _sIt = "strategyId";
|
|
766
|
+
const _sLV = "stringListValue";
|
|
576
767
|
const _sM = "skillMd";
|
|
577
768
|
const _sMe = "secretsManager";
|
|
578
|
-
const
|
|
769
|
+
const _sMes = "sessionMetadata";
|
|
770
|
+
const _sN = "serviceNames";
|
|
771
|
+
const _sNe = "serverName";
|
|
579
772
|
const _sP = "systemPrompt";
|
|
773
|
+
const _sPJP = "systemPromptJsonPath";
|
|
774
|
+
const _sPRC = "systemPromptRecommendationConfig";
|
|
775
|
+
const _sPRR = "systemPromptRecommendationResult";
|
|
580
776
|
const _sQ = "searchQuery";
|
|
581
777
|
const _sQEE = "serviceQuotaExceededException";
|
|
582
778
|
const _sR = "successfulRecords";
|
|
583
779
|
const _sRA = "sessionReplayArtifact";
|
|
584
780
|
const _sRt = "stopReason";
|
|
585
781
|
const _sS = "streamStatus";
|
|
782
|
+
const _sSa = "sampleSize";
|
|
586
783
|
const _sSe = "sessionStatus";
|
|
587
784
|
const _sSes = "sessionSummaries";
|
|
588
785
|
const _sSess = "sessionSpans";
|
|
786
|
+
const _sT = "startTime";
|
|
589
787
|
const _sTS = "sessionTimeoutSeconds";
|
|
590
788
|
const _sU = "sessionUri";
|
|
591
789
|
const _sUt = "streamUpdate";
|
|
@@ -605,27 +803,41 @@ const _sk = "skills";
|
|
|
605
803
|
const _st = "streaming";
|
|
606
804
|
const _sta = "status";
|
|
607
805
|
const _star = "start";
|
|
806
|
+
const _stat = "statistics";
|
|
608
807
|
const _std = "stdout";
|
|
609
808
|
const _stde = "stderr";
|
|
610
809
|
const _str = "streams";
|
|
611
810
|
const _stre = "stream";
|
|
612
811
|
const _t = "type";
|
|
613
|
-
const
|
|
812
|
+
const _tD = "toolDescription";
|
|
813
|
+
const _tDJP = "toolDescriptionJsonPath";
|
|
814
|
+
const _tDRC = "toolDescriptionRecommendationConfig";
|
|
815
|
+
const _tDRR = "toolDescriptionRecommendationResult";
|
|
816
|
+
const _tDT = "toolDescriptionText";
|
|
817
|
+
const _tE = "totalEvaluated";
|
|
818
|
+
const _tEh = "throttlingException";
|
|
819
|
+
const _tF = "totalFailed";
|
|
614
820
|
const _tI = "traceId";
|
|
615
821
|
const _tIa = "taskId";
|
|
616
822
|
const _tIr = "traceIds";
|
|
617
823
|
const _tK = "topK";
|
|
618
|
-
const _tN = "
|
|
619
|
-
const
|
|
824
|
+
const _tN = "toolName";
|
|
825
|
+
const _tNOS = "totalNumberOfSessions";
|
|
826
|
+
const _tNo = "toolNames";
|
|
827
|
+
const _tP = "targetPaths";
|
|
828
|
+
const _tPo = "topP";
|
|
620
829
|
const _tPr = "traceParent";
|
|
621
|
-
const _tR = "
|
|
830
|
+
const _tR = "timeRange";
|
|
831
|
+
const _tRo = "toolResult";
|
|
622
832
|
const _tS = "traceState";
|
|
833
|
+
const _tSI = "testScenarioId";
|
|
623
834
|
const _tSa = "taskStatus";
|
|
624
835
|
const _tSi = "timeoutSeconds";
|
|
625
836
|
const _tT = "totalTokens";
|
|
626
837
|
const _tU = "tokenUsage";
|
|
627
838
|
const _tUI = "toolUseId";
|
|
628
839
|
const _tUo = "toolUse";
|
|
840
|
+
const _ta = "target";
|
|
629
841
|
const _te = "text";
|
|
630
842
|
const _tem = "temperature";
|
|
631
843
|
const _ti = "timeout";
|
|
@@ -633,22 +845,29 @@ const _tim = "timestamp";
|
|
|
633
845
|
const _to = "tools";
|
|
634
846
|
const _tr = "traceparent";
|
|
635
847
|
const _tra = "tracestate";
|
|
636
|
-
const
|
|
848
|
+
const _tu = "turns";
|
|
849
|
+
const _u = "upper";
|
|
637
850
|
const _uA = "updatedAt";
|
|
638
851
|
const _uI = "userIdentifier";
|
|
639
852
|
const _uIs = "userId";
|
|
640
853
|
const _uT = "userToken";
|
|
641
|
-
const _ur = "
|
|
854
|
+
const _ur = "uri";
|
|
855
|
+
const _url = "url";
|
|
642
856
|
const _us = "usage";
|
|
643
857
|
const _v = "value";
|
|
858
|
+
const _vC = "variantConfiguration";
|
|
644
859
|
const _vE = "validationException";
|
|
645
860
|
const _vI = "versionId";
|
|
861
|
+
const _vN = "variantName";
|
|
646
862
|
const _vP = "viewPort";
|
|
863
|
+
const _vR = "variantResults";
|
|
864
|
+
const _va = "variants";
|
|
647
865
|
const _ve = "version";
|
|
648
|
-
const _w = "
|
|
866
|
+
const _w = "weight";
|
|
649
867
|
const _wAT = "workloadAccessToken";
|
|
650
868
|
const _wIT = "workloadIdentityToken";
|
|
651
869
|
const _wN = "workloadName";
|
|
870
|
+
const _wi = "width";
|
|
652
871
|
const _x = "x";
|
|
653
872
|
const _xabsi = "x-amzn-browser-session-id";
|
|
654
873
|
const _xacisi = "x-amzn-code-interpreter-session-id";
|
|
@@ -765,6 +984,8 @@ var SensitiveJson = [0, n0, _SJ, 8, 15];
|
|
|
765
984
|
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
766
985
|
var SensitiveText = [0, n0, _ST, 8, 0];
|
|
767
986
|
var State = [0, n0, _S, 8, 0];
|
|
987
|
+
var SystemPromptText = [0, n0, _SPT, 8, 0];
|
|
988
|
+
var ToolDescriptionText = [0, n0, _TDT, 8, 0];
|
|
768
989
|
var UserTokenType = [0, n0, _UTT, 8, 0];
|
|
769
990
|
var WorkloadIdentityTokenType = [0, n0, _WITT, 8, 0];
|
|
770
991
|
export var A2aDescriptor$ = [3, n0, _AD,
|
|
@@ -772,6 +993,16 @@ export var A2aDescriptor$ = [3, n0, _AD,
|
|
|
772
993
|
[_aC],
|
|
773
994
|
[() => AgentCardDefinition$], 1
|
|
774
995
|
];
|
|
996
|
+
export var ABTestResults$ = [3, n0, _ABTR,
|
|
997
|
+
0,
|
|
998
|
+
[_eM, _aT],
|
|
999
|
+
[() => EvaluatorMetricList, 4], 1
|
|
1000
|
+
];
|
|
1001
|
+
export var ABTestSummary$ = [3, n0, _ABTS,
|
|
1002
|
+
0,
|
|
1003
|
+
[_aTI, _aTA, _n, _sta, _eS, _cA, _uA, _d, _gA],
|
|
1004
|
+
[0, 0, 0, 0, 0, 4, 4, 0, 0], 7
|
|
1005
|
+
];
|
|
775
1006
|
export var ActorSummary$ = [3, n0, _AS,
|
|
776
1007
|
0,
|
|
777
1008
|
[_aI],
|
|
@@ -822,6 +1053,11 @@ export var BatchDeleteMemoryRecordsOutput$ = [3, n0, _BDMRO,
|
|
|
822
1053
|
[_sR, _fR],
|
|
823
1054
|
[() => MemoryRecordsOutputList, () => MemoryRecordsOutputList], 2
|
|
824
1055
|
];
|
|
1056
|
+
export var BatchEvaluationSummary$ = [3, n0, _BES,
|
|
1057
|
+
0,
|
|
1058
|
+
[_bEI, _bEA, _bEN, _sta, _cA, _d, _ev, _eR, _eD, _uA],
|
|
1059
|
+
[0, 0, 0, 0, 5, 0, () => EvaluatorList, () => EvaluationJobResults$, 64 | 0, 5], 5
|
|
1060
|
+
];
|
|
825
1061
|
export var BatchUpdateMemoryRecordsInput$ = [3, n0, _BUMRI,
|
|
826
1062
|
0,
|
|
827
1063
|
[_mI, _re],
|
|
@@ -872,6 +1108,36 @@ export var Certificate$ = [3, n0, _C,
|
|
|
872
1108
|
[_l],
|
|
873
1109
|
[() => CertificateLocation$], 1
|
|
874
1110
|
];
|
|
1111
|
+
export var CloudWatchFilterConfig$ = [3, n0, _CWFC,
|
|
1112
|
+
0,
|
|
1113
|
+
[_sIe, _tR],
|
|
1114
|
+
[64 | 0, () => SessionFilterConfig$]
|
|
1115
|
+
];
|
|
1116
|
+
export var CloudWatchLogsFilter$ = [3, n0, _CWLF,
|
|
1117
|
+
0,
|
|
1118
|
+
[_k, _o, _v],
|
|
1119
|
+
[0, 0, () => FilterValue$], 3
|
|
1120
|
+
];
|
|
1121
|
+
export var CloudWatchLogsRule$ = [3, n0, _CWLR,
|
|
1122
|
+
0,
|
|
1123
|
+
[_f],
|
|
1124
|
+
[() => CloudWatchLogsFilterList]
|
|
1125
|
+
];
|
|
1126
|
+
export var CloudWatchLogsSource$ = [3, n0, _CWLS,
|
|
1127
|
+
0,
|
|
1128
|
+
[_sN, _lGN, _fC],
|
|
1129
|
+
[64 | 0, 64 | 0, () => CloudWatchFilterConfig$], 2
|
|
1130
|
+
];
|
|
1131
|
+
export var CloudWatchLogsTraceConfig$ = [3, n0, _CWLTC,
|
|
1132
|
+
0,
|
|
1133
|
+
[_lGA, _sN, _sT, _eT, _ru],
|
|
1134
|
+
[64 | 0, 64 | 0, 5, 5, () => CloudWatchLogsRule$], 4
|
|
1135
|
+
];
|
|
1136
|
+
export var CloudWatchOutputConfig$ = [3, n0, _CWOC,
|
|
1137
|
+
0,
|
|
1138
|
+
[_lGNo, _lSN],
|
|
1139
|
+
[0, 0], 2
|
|
1140
|
+
];
|
|
875
1141
|
export var CodeInterpreterResult$ = [3, n0, _CIR,
|
|
876
1142
|
0,
|
|
877
1143
|
[_co, _sC, _iE],
|
|
@@ -892,9 +1158,24 @@ export var CompleteResourceTokenAuthResponse$ = [3, n0, _CRTARo,
|
|
|
892
1158
|
[],
|
|
893
1159
|
[]
|
|
894
1160
|
];
|
|
1161
|
+
export var ConfidenceInterval$ = [3, n0, _CI,
|
|
1162
|
+
0,
|
|
1163
|
+
[_lo, _u],
|
|
1164
|
+
[1, 1]
|
|
1165
|
+
];
|
|
1166
|
+
export var ConfigurationBundleRef$ = [3, n0, _CBR,
|
|
1167
|
+
0,
|
|
1168
|
+
[_bA, _bV],
|
|
1169
|
+
[0, 0], 2
|
|
1170
|
+
];
|
|
1171
|
+
export var ConfigurationBundleToolEntry$ = [3, n0, _CBTE,
|
|
1172
|
+
0,
|
|
1173
|
+
[_tN, _tDJP],
|
|
1174
|
+
[0, 0], 2
|
|
1175
|
+
];
|
|
895
1176
|
export var ContentBlock$ = [3, n0, _CB,
|
|
896
1177
|
0,
|
|
897
|
-
[_t, _te,
|
|
1178
|
+
[_t, _te, _da, _mT, _ur, _n, _d, _si, _res],
|
|
898
1179
|
[0, 0, 21, 0, 0, 0, 0, 1, () => ResourceContent$], 1
|
|
899
1180
|
];
|
|
900
1181
|
export var ContentDeltaEvent$ = [3, n0, _CDE,
|
|
@@ -912,19 +1193,34 @@ export var ContentStopEvent$ = [3, n0, _CSEo,
|
|
|
912
1193
|
[_eC, _sta],
|
|
913
1194
|
[1, 0], 2
|
|
914
1195
|
];
|
|
1196
|
+
export var ControlStats$ = [3, n0, _CS,
|
|
1197
|
+
0,
|
|
1198
|
+
[_vN, _sSa, _me],
|
|
1199
|
+
[0, 1, 1], 3
|
|
1200
|
+
];
|
|
915
1201
|
export var Conversational$ = [3, n0, _Co,
|
|
916
1202
|
0,
|
|
917
1203
|
[_co, _ro],
|
|
918
1204
|
[[() => Content$, 0], 0], 2
|
|
919
1205
|
];
|
|
1206
|
+
export var CreateABTestRequest$ = [3, n0, _CABTR,
|
|
1207
|
+
0,
|
|
1208
|
+
[_n, _gA, _va, _eCv, _rA, _d, _gF, _eOC, _cT],
|
|
1209
|
+
[0, 0, () => VariantList, () => ABTestEvaluationConfig$, 0, 0, () => GatewayFilter$, 2, [0, 4]], 5
|
|
1210
|
+
];
|
|
1211
|
+
export var CreateABTestResponse$ = [3, n0, _CABTRr,
|
|
1212
|
+
0,
|
|
1213
|
+
[_aTI, _aTA, _sta, _eS, _cA, _n],
|
|
1214
|
+
[0, 0, 0, 0, 4, 0], 5
|
|
1215
|
+
];
|
|
920
1216
|
export var CreateEventInput$ = [3, n0, _CEI,
|
|
921
1217
|
0,
|
|
922
|
-
[_mI, _aI,
|
|
1218
|
+
[_mI, _aI, _eTv, _p, _sI, _b, _cT, _met],
|
|
923
1219
|
[[0, 1], 0, 4, [() => PayloadTypeList, 0], 0, () => Branch$, [0, 4], () => MetadataMap], 4
|
|
924
1220
|
];
|
|
925
1221
|
export var CreateEventOutput$ = [3, n0, _CEO,
|
|
926
1222
|
0,
|
|
927
|
-
[
|
|
1223
|
+
[_eve],
|
|
928
1224
|
[[() => Event$, 0]], 1
|
|
929
1225
|
];
|
|
930
1226
|
export var CustomDescriptor$ = [3, n0, _CD,
|
|
@@ -932,6 +1228,26 @@ export var CustomDescriptor$ = [3, n0, _CD,
|
|
|
932
1228
|
[_iC],
|
|
933
1229
|
[0]
|
|
934
1230
|
];
|
|
1231
|
+
export var DeleteABTestRequest$ = [3, n0, _DABTR,
|
|
1232
|
+
0,
|
|
1233
|
+
[_aTI],
|
|
1234
|
+
[[0, 1]], 1
|
|
1235
|
+
];
|
|
1236
|
+
export var DeleteABTestResponse$ = [3, n0, _DABTRe,
|
|
1237
|
+
0,
|
|
1238
|
+
[_aTI, _aTA, _sta],
|
|
1239
|
+
[0, 0, 0], 3
|
|
1240
|
+
];
|
|
1241
|
+
export var DeleteBatchEvaluationRequest$ = [3, n0, _DBER,
|
|
1242
|
+
0,
|
|
1243
|
+
[_bEI],
|
|
1244
|
+
[[0, 1]], 1
|
|
1245
|
+
];
|
|
1246
|
+
export var DeleteBatchEvaluationResponse$ = [3, n0, _DBERe,
|
|
1247
|
+
0,
|
|
1248
|
+
[_bEI, _bEA, _sta],
|
|
1249
|
+
[0, 0, 0], 3
|
|
1250
|
+
];
|
|
935
1251
|
export var DeleteEventInput$ = [3, n0, _DEI,
|
|
936
1252
|
0,
|
|
937
1253
|
[_mI, _sI, _eI, _aI],
|
|
@@ -952,6 +1268,16 @@ export var DeleteMemoryRecordOutput$ = [3, n0, _DMRO,
|
|
|
952
1268
|
[_mRI],
|
|
953
1269
|
[0], 1
|
|
954
1270
|
];
|
|
1271
|
+
export var DeleteRecommendationRequest$ = [3, n0, _DRR,
|
|
1272
|
+
0,
|
|
1273
|
+
[_rI],
|
|
1274
|
+
[[0, 1]], 1
|
|
1275
|
+
];
|
|
1276
|
+
export var DeleteRecommendationResponse$ = [3, n0, _DRRe,
|
|
1277
|
+
0,
|
|
1278
|
+
[_rI, _sta],
|
|
1279
|
+
[0, 0], 2
|
|
1280
|
+
];
|
|
955
1281
|
export var Descriptors$ = [3, n0, _De,
|
|
956
1282
|
0,
|
|
957
1283
|
[_mc, _a, _cu, _aSg],
|
|
@@ -959,7 +1285,7 @@ export var Descriptors$ = [3, n0, _De,
|
|
|
959
1285
|
];
|
|
960
1286
|
export var EvaluateRequest$ = [3, n0, _ER,
|
|
961
1287
|
0,
|
|
962
|
-
[_eIv, _eIva,
|
|
1288
|
+
[_eIv, _eIva, _eTva, _eRI],
|
|
963
1289
|
[[0, 1], [() => EvaluationInput$, 0], () => EvaluationTarget$, [() => EvaluationReferenceInputs, 0]], 2
|
|
964
1290
|
];
|
|
965
1291
|
export var EvaluateResponse$ = [3, n0, _ERv,
|
|
@@ -969,9 +1295,14 @@ export var EvaluateResponse$ = [3, n0, _ERv,
|
|
|
969
1295
|
];
|
|
970
1296
|
export var EvaluationExpectedTrajectory$ = [3, n0, _EET,
|
|
971
1297
|
0,
|
|
972
|
-
[
|
|
1298
|
+
[_tNo],
|
|
973
1299
|
[64 | 0]
|
|
974
1300
|
];
|
|
1301
|
+
export var EvaluationJobResults$ = [3, n0, _EJR,
|
|
1302
|
+
0,
|
|
1303
|
+
[_nOSC, _nOSIP, _nOSF, _tNOS, _nOSI, _eSv],
|
|
1304
|
+
[1, 1, 1, 1, 1, () => EvaluatorSummaryList]
|
|
1305
|
+
];
|
|
975
1306
|
export var EvaluationReferenceInput$ = [3, n0, _ERI,
|
|
976
1307
|
0,
|
|
977
1308
|
[_con, _eRx, _as, _eTx],
|
|
@@ -979,12 +1310,32 @@ export var EvaluationReferenceInput$ = [3, n0, _ERI,
|
|
|
979
1310
|
];
|
|
980
1311
|
export var EvaluationResultContent$ = [3, n0, _ERC,
|
|
981
1312
|
0,
|
|
982
|
-
[_eA, _eIv, _eN, _con, _ex, _v, _la, _tU,
|
|
1313
|
+
[_eA, _eIv, _eN, _con, _ex, _v, _la, _tU, _eMr, _eCr, _iRIF],
|
|
983
1314
|
[0, 0, 0, () => Context$, [() => EvaluationExplanation, 0], 1, 0, () => TokenUsage$, 0, 0, 64 | 0], 4
|
|
984
1315
|
];
|
|
985
|
-
export var
|
|
1316
|
+
export var Evaluator$ = [3, n0, _E,
|
|
1317
|
+
0,
|
|
1318
|
+
[_eIv],
|
|
1319
|
+
[0], 1
|
|
1320
|
+
];
|
|
1321
|
+
export var EvaluatorMetric$ = [3, n0, _EM,
|
|
1322
|
+
0,
|
|
1323
|
+
[_eA, _cS, _vR],
|
|
1324
|
+
[0, () => ControlStats$, () => VariantResultList], 3
|
|
1325
|
+
];
|
|
1326
|
+
export var EvaluatorStatistics$ = [3, n0, _ES,
|
|
1327
|
+
0,
|
|
1328
|
+
[_aSv],
|
|
1329
|
+
[1]
|
|
1330
|
+
];
|
|
1331
|
+
export var EvaluatorSummary$ = [3, n0, _ESv,
|
|
986
1332
|
0,
|
|
987
|
-
[
|
|
1333
|
+
[_eIv, _stat, _tE, _tF],
|
|
1334
|
+
[0, () => EvaluatorStatistics$, 1, 1]
|
|
1335
|
+
];
|
|
1336
|
+
export var Event$ = [3, n0, _Ev,
|
|
1337
|
+
0,
|
|
1338
|
+
[_mI, _aI, _sI, _eI, _eTv, _p, _b, _met],
|
|
988
1339
|
[0, 0, 0, 0, 4, [() => PayloadTypeList, 0], () => Branch$, () => MetadataMap], 6
|
|
989
1340
|
];
|
|
990
1341
|
export var EventMetadataFilterExpression$ = [3, n0, _EMFE,
|
|
@@ -1017,6 +1368,21 @@ export var FilterInput$ = [3, n0, _FI,
|
|
|
1017
1368
|
[_b, _eMv],
|
|
1018
1369
|
[() => BranchFilter$, () => EventMetadataFilterList]
|
|
1019
1370
|
];
|
|
1371
|
+
export var GatewayFilter$ = [3, n0, _GF,
|
|
1372
|
+
0,
|
|
1373
|
+
[_tP],
|
|
1374
|
+
[64 | 0]
|
|
1375
|
+
];
|
|
1376
|
+
export var GetABTestRequest$ = [3, n0, _GABTR,
|
|
1377
|
+
0,
|
|
1378
|
+
[_aTI],
|
|
1379
|
+
[[0, 1]], 1
|
|
1380
|
+
];
|
|
1381
|
+
export var GetABTestResponse$ = [3, n0, _GABTRe,
|
|
1382
|
+
0,
|
|
1383
|
+
[_aTI, _aTA, _n, _sta, _eS, _gA, _va, _eCv, _cA, _uA, _d, _gF, _rA, _cRI, _eD, _sAt, _sAto, _mDEA, _resu],
|
|
1384
|
+
[0, 0, 0, 0, 0, 0, () => VariantList, () => ABTestEvaluationConfig$, 4, 4, 0, () => GatewayFilter$, 0, 0, 64 | 0, 4, 4, 4, () => ABTestResults$], 10
|
|
1385
|
+
];
|
|
1020
1386
|
export var GetAgentCardRequest$ = [3, n0, _GACR,
|
|
1021
1387
|
0,
|
|
1022
1388
|
[_aRA, _rSI, _q],
|
|
@@ -1027,6 +1393,16 @@ export var GetAgentCardResponse$ = [3, n0, _GACRe,
|
|
|
1027
1393
|
[_aC, _rSI, _sCt],
|
|
1028
1394
|
[[15, 16], [0, { [_hH]: _XABARSI }], [1, 32]], 1
|
|
1029
1395
|
];
|
|
1396
|
+
export var GetBatchEvaluationRequest$ = [3, n0, _GBER,
|
|
1397
|
+
0,
|
|
1398
|
+
[_bEI],
|
|
1399
|
+
[[0, 1]], 1
|
|
1400
|
+
];
|
|
1401
|
+
export var GetBatchEvaluationResponse$ = [3, n0, _GBERe,
|
|
1402
|
+
0,
|
|
1403
|
+
[_bEI, _bEA, _bEN, _sta, _cA, _ev, _dSC, _oC, _eR, _eD, _d, _uA],
|
|
1404
|
+
[0, 0, 0, 0, 5, () => EvaluatorList, () => DataSourceConfig$, () => OutputConfig$, () => EvaluationJobResults$, 64 | 0, 0, 5], 5
|
|
1405
|
+
];
|
|
1030
1406
|
export var GetBrowserSessionRequest$ = [3, n0, _GBSR,
|
|
1031
1407
|
0,
|
|
1032
1408
|
[_bI, _sI],
|
|
@@ -1054,7 +1430,7 @@ export var GetEventInput$ = [3, n0, _GEI,
|
|
|
1054
1430
|
];
|
|
1055
1431
|
export var GetEventOutput$ = [3, n0, _GEO,
|
|
1056
1432
|
0,
|
|
1057
|
-
[
|
|
1433
|
+
[_eve],
|
|
1058
1434
|
[[() => Event$, 0]], 1
|
|
1059
1435
|
];
|
|
1060
1436
|
export var GetMemoryRecordInput$ = [3, n0, _GMRI,
|
|
@@ -1067,6 +1443,16 @@ export var GetMemoryRecordOutput$ = [3, n0, _GMRO,
|
|
|
1067
1443
|
[_mR],
|
|
1068
1444
|
[[() => MemoryRecord$, 0]], 1
|
|
1069
1445
|
];
|
|
1446
|
+
export var GetRecommendationRequest$ = [3, n0, _GRR,
|
|
1447
|
+
0,
|
|
1448
|
+
[_rI],
|
|
1449
|
+
[[0, 1]], 1
|
|
1450
|
+
];
|
|
1451
|
+
export var GetRecommendationResponse$ = [3, n0, _GRRe,
|
|
1452
|
+
0,
|
|
1453
|
+
[_rI, _rAe, _n, _t, _rC, _sta, _cA, _uA, _d, _rR],
|
|
1454
|
+
[0, 0, 0, 0, [() => RecommendationConfig$, 0], 0, 5, 5, 0, [() => RecommendationResult$, 0]], 8
|
|
1455
|
+
];
|
|
1070
1456
|
export var GetResourceApiKeyRequest$ = [3, n0, _GRAKR,
|
|
1071
1457
|
0,
|
|
1072
1458
|
[_wIT, _rCPN],
|
|
@@ -1079,12 +1465,12 @@ export var GetResourceApiKeyResponse$ = [3, n0, _GRAKRe,
|
|
|
1079
1465
|
];
|
|
1080
1466
|
export var GetResourceOauth2TokenRequest$ = [3, n0, _GROTR,
|
|
1081
1467
|
0,
|
|
1082
|
-
[_wIT, _rCPN, _sc, _oF, _sU, _rORU, _fA, _cP,
|
|
1083
|
-
[[() => WorkloadIdentityTokenType, 0], 0, 64 | 0, 0, 0, 0, 2, [() => CustomRequestParametersType, 0], [() => State, 0]], 4
|
|
1468
|
+
[_wIT, _rCPN, _sc, _oF, _sU, _rORU, _fA, _cP, _cSu, _reso, _au],
|
|
1469
|
+
[[() => WorkloadIdentityTokenType, 0], 0, 64 | 0, 0, 0, 0, 2, [() => CustomRequestParametersType, 0], [() => State, 0], 64 | 0, 64 | 0], 4
|
|
1084
1470
|
];
|
|
1085
1471
|
export var GetResourceOauth2TokenResponse$ = [3, n0, _GROTRe,
|
|
1086
1472
|
0,
|
|
1087
|
-
[_aU,
|
|
1473
|
+
[_aU, _aTc, _sU, _sSe],
|
|
1088
1474
|
[[() => AuthorizationUrlType, 0], [() => AccessTokenType, 0], 0, 0]
|
|
1089
1475
|
];
|
|
1090
1476
|
export var GetWorkloadAccessTokenForJWTRequest$ = [3, n0, _GWATFJWTR,
|
|
@@ -1117,9 +1503,14 @@ export var GetWorkloadAccessTokenResponse$ = [3, n0, _GWATRe,
|
|
|
1117
1503
|
[_wAT],
|
|
1118
1504
|
[[() => WorkloadIdentityTokenType, 0]], 1
|
|
1119
1505
|
];
|
|
1506
|
+
export var GroundTruthTurn$ = [3, n0, _GTT,
|
|
1507
|
+
0,
|
|
1508
|
+
[_i, _eRx],
|
|
1509
|
+
[() => GroundTruthTurnInput$, () => EvaluationContent$]
|
|
1510
|
+
];
|
|
1120
1511
|
export var HarnessAgentCoreBrowserConfig$ = [3, n0, _HACBC,
|
|
1121
1512
|
0,
|
|
1122
|
-
[
|
|
1513
|
+
[_bAr],
|
|
1123
1514
|
[0]
|
|
1124
1515
|
];
|
|
1125
1516
|
export var HarnessAgentCoreCodeInterpreterConfig$ = [3, n0, _HACCIC,
|
|
@@ -1134,12 +1525,12 @@ export var HarnessAgentCoreGatewayConfig$ = [3, n0, _HACGC,
|
|
|
1134
1525
|
];
|
|
1135
1526
|
export var HarnessBedrockModelConfig$ = [3, n0, _HBMC,
|
|
1136
1527
|
0,
|
|
1137
|
-
[_mIo, _mTa, _tem,
|
|
1528
|
+
[_mIo, _mTa, _tem, _tPo],
|
|
1138
1529
|
[0, 1, 1, 1], 1
|
|
1139
1530
|
];
|
|
1140
1531
|
export var HarnessContentBlockDeltaEvent$ = [3, n0, _HCBDE,
|
|
1141
1532
|
0,
|
|
1142
|
-
[_cBI,
|
|
1533
|
+
[_cBI, _de],
|
|
1143
1534
|
[1, [() => HarnessContentBlockDelta$, 0]], 2
|
|
1144
1535
|
];
|
|
1145
1536
|
export var HarnessContentBlockStartEvent$ = [3, n0, _HCBSE,
|
|
@@ -1154,12 +1545,12 @@ export var HarnessContentBlockStopEvent$ = [3, n0, _HCBSEa,
|
|
|
1154
1545
|
];
|
|
1155
1546
|
export var HarnessGeminiModelConfig$ = [3, n0, _HGMC,
|
|
1156
1547
|
0,
|
|
1157
|
-
[_mIo, _aKA, _mTa, _tem,
|
|
1548
|
+
[_mIo, _aKA, _mTa, _tem, _tPo, _tK],
|
|
1158
1549
|
[0, 0, 1, 1, 1, 1], 2
|
|
1159
1550
|
];
|
|
1160
1551
|
export var HarnessInlineFunctionConfig$ = [3, n0, _HIFC,
|
|
1161
1552
|
0,
|
|
1162
|
-
[
|
|
1553
|
+
[_d, _iS],
|
|
1163
1554
|
[[() => HarnessInlineFunctionDescription, 0], [() => SensitiveJson, 0]], 2
|
|
1164
1555
|
];
|
|
1165
1556
|
export var HarnessMessage$ = [3, n0, _HM,
|
|
@@ -1179,12 +1570,12 @@ export var HarnessMessageStopEvent$ = [3, n0, _HMSEa,
|
|
|
1179
1570
|
];
|
|
1180
1571
|
export var HarnessMetadataEvent$ = [3, n0, _HME,
|
|
1181
1572
|
0,
|
|
1182
|
-
[_us,
|
|
1573
|
+
[_us, _metr],
|
|
1183
1574
|
[() => HarnessTokenUsage$, () => HarnessStreamMetrics$], 2
|
|
1184
1575
|
];
|
|
1185
1576
|
export var HarnessOpenAiModelConfig$ = [3, n0, _HOAMC,
|
|
1186
1577
|
0,
|
|
1187
|
-
[_mIo, _aKA, _mTa, _tem,
|
|
1578
|
+
[_mIo, _aKA, _mTa, _tem, _tPo],
|
|
1188
1579
|
[0, 0, 1, 1, 1], 2
|
|
1189
1580
|
];
|
|
1190
1581
|
export var HarnessReasoningTextBlock$ = [3, n0, _HRTB,
|
|
@@ -1194,7 +1585,7 @@ export var HarnessReasoningTextBlock$ = [3, n0, _HRTB,
|
|
|
1194
1585
|
];
|
|
1195
1586
|
export var HarnessRemoteMcpConfig$ = [3, n0, _HRMC,
|
|
1196
1587
|
0,
|
|
1197
|
-
[
|
|
1588
|
+
[_url, _h],
|
|
1198
1589
|
[[() => HarnessRemoteMcpUrl, 0], [() => HttpHeadersMap, 0]], 1
|
|
1199
1590
|
];
|
|
1200
1591
|
export var HarnessStreamMetrics$ = [3, n0, _HSM,
|
|
@@ -1224,7 +1615,7 @@ export var HarnessToolResultBlockStart$ = [3, n0, _HTRBS,
|
|
|
1224
1615
|
];
|
|
1225
1616
|
export var HarnessToolUseBlock$ = [3, n0, _HTUB,
|
|
1226
1617
|
0,
|
|
1227
|
-
[_n, _tUI, _i, _t,
|
|
1618
|
+
[_n, _tUI, _i, _t, _sNe],
|
|
1228
1619
|
[0, 0, [() => SensitiveJson, 0], 0, 0], 3
|
|
1229
1620
|
];
|
|
1230
1621
|
export var HarnessToolUseBlockDelta$ = [3, n0, _HTUBD,
|
|
@@ -1234,9 +1625,14 @@ export var HarnessToolUseBlockDelta$ = [3, n0, _HTUBD,
|
|
|
1234
1625
|
];
|
|
1235
1626
|
export var HarnessToolUseBlockStart$ = [3, n0, _HTUBS,
|
|
1236
1627
|
0,
|
|
1237
|
-
[_tUI, _n, _t,
|
|
1628
|
+
[_tUI, _n, _t, _sNe],
|
|
1238
1629
|
[0, 0, 0, 0], 2
|
|
1239
1630
|
];
|
|
1631
|
+
export var InlineGroundTruth$ = [3, n0, _IGT,
|
|
1632
|
+
0,
|
|
1633
|
+
[_as, _eTx, _tu],
|
|
1634
|
+
[() => EvaluationContentList, () => EvaluationExpectedTrajectory$, () => GroundTruthTurnList]
|
|
1635
|
+
];
|
|
1240
1636
|
export var InputContentBlock$ = [3, n0, _ICB,
|
|
1241
1637
|
0,
|
|
1242
1638
|
[_pa, _te, _bl],
|
|
@@ -1274,7 +1670,7 @@ export var InvokeBrowserRequest$ = [3, n0, _IBR,
|
|
|
1274
1670
|
];
|
|
1275
1671
|
export var InvokeBrowserResponse$ = [3, n0, _IBRn,
|
|
1276
1672
|
0,
|
|
1277
|
-
[
|
|
1673
|
+
[_resul, _sI],
|
|
1278
1674
|
[() => BrowserActionResult$, [0, { [_hH]: _xabsi }]], 2
|
|
1279
1675
|
];
|
|
1280
1676
|
export var InvokeCodeInterpreterRequest$ = [3, n0, _ICIR,
|
|
@@ -1327,6 +1723,16 @@ export var KeyTypeResult$ = [3, n0, _KTR,
|
|
|
1327
1723
|
[_sta, _e],
|
|
1328
1724
|
[0, 0], 1
|
|
1329
1725
|
];
|
|
1726
|
+
export var ListABTestsRequest$ = [3, n0, _LABTR,
|
|
1727
|
+
0,
|
|
1728
|
+
[_mRa, _nT],
|
|
1729
|
+
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
1730
|
+
];
|
|
1731
|
+
export var ListABTestsResponse$ = [3, n0, _LABTRi,
|
|
1732
|
+
0,
|
|
1733
|
+
[_aTb, _nT],
|
|
1734
|
+
[() => ABTestSummaryList, 0], 1
|
|
1735
|
+
];
|
|
1330
1736
|
export var ListActorsInput$ = [3, n0, _LAI,
|
|
1331
1737
|
0,
|
|
1332
1738
|
[_mI, _mRa, _nT],
|
|
@@ -1337,6 +1743,16 @@ export var ListActorsOutput$ = [3, n0, _LAO,
|
|
|
1337
1743
|
[_aSc, _nT],
|
|
1338
1744
|
[() => ActorSummaryList, 0], 1
|
|
1339
1745
|
];
|
|
1746
|
+
export var ListBatchEvaluationsRequest$ = [3, n0, _LBER,
|
|
1747
|
+
0,
|
|
1748
|
+
[_mRa, _nT],
|
|
1749
|
+
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
1750
|
+
];
|
|
1751
|
+
export var ListBatchEvaluationsResponse$ = [3, n0, _LBERi,
|
|
1752
|
+
0,
|
|
1753
|
+
[_bE, _nT],
|
|
1754
|
+
[() => BatchEvaluationSummaryList, 0], 1
|
|
1755
|
+
];
|
|
1340
1756
|
export var ListBrowserSessionsRequest$ = [3, n0, _LBSR,
|
|
1341
1757
|
0,
|
|
1342
1758
|
[_bI, _mRa, _nT, _sta],
|
|
@@ -1359,17 +1775,17 @@ export var ListCodeInterpreterSessionsResponse$ = [3, n0, _LCISRi,
|
|
|
1359
1775
|
];
|
|
1360
1776
|
export var ListEventsInput$ = [3, n0, _LEI,
|
|
1361
1777
|
0,
|
|
1362
|
-
[_mI, _sI, _aI, _iP,
|
|
1778
|
+
[_mI, _sI, _aI, _iP, _fi, _mRa, _nT],
|
|
1363
1779
|
[[0, 1], [0, 1], [0, 1], 2, () => FilterInput$, 1, 0], 3
|
|
1364
1780
|
];
|
|
1365
1781
|
export var ListEventsOutput$ = [3, n0, _LEO,
|
|
1366
1782
|
0,
|
|
1367
|
-
[
|
|
1783
|
+
[_even, _nT],
|
|
1368
1784
|
[[() => EventList, 0], 0], 1
|
|
1369
1785
|
];
|
|
1370
1786
|
export var ListMemoryExtractionJobsInput$ = [3, n0, _LMEJI,
|
|
1371
1787
|
0,
|
|
1372
|
-
[_mI, _mRa,
|
|
1788
|
+
[_mI, _mRa, _fi, _nT],
|
|
1373
1789
|
[[0, 1], 1, () => ExtractionJobFilterInput$, 0], 1
|
|
1374
1790
|
];
|
|
1375
1791
|
export var ListMemoryExtractionJobsOutput$ = [3, n0, _LMEJO,
|
|
@@ -1379,17 +1795,27 @@ export var ListMemoryExtractionJobsOutput$ = [3, n0, _LMEJO,
|
|
|
1379
1795
|
];
|
|
1380
1796
|
export var ListMemoryRecordsInput$ = [3, n0, _LMRI,
|
|
1381
1797
|
0,
|
|
1382
|
-
[_mI, _na, _nP, _mSIe, _mRa, _nT],
|
|
1383
|
-
[[0, 1], 0, 0, 0, 1, 0], 1
|
|
1798
|
+
[_mI, _na, _nP, _mSIe, _mRa, _nT, _mF],
|
|
1799
|
+
[[0, 1], 0, 0, 0, 1, 0, () => MemoryMetadataFilterList], 1
|
|
1384
1800
|
];
|
|
1385
1801
|
export var ListMemoryRecordsOutput$ = [3, n0, _LMRO,
|
|
1386
1802
|
0,
|
|
1387
1803
|
[_mRS, _nT],
|
|
1388
1804
|
[[() => MemoryRecordSummaryList, 0], 0], 1
|
|
1389
1805
|
];
|
|
1806
|
+
export var ListRecommendationsRequest$ = [3, n0, _LRR,
|
|
1807
|
+
0,
|
|
1808
|
+
[_mRa, _nT, _sF],
|
|
1809
|
+
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _sta }]]
|
|
1810
|
+
];
|
|
1811
|
+
export var ListRecommendationsResponse$ = [3, n0, _LRRi,
|
|
1812
|
+
0,
|
|
1813
|
+
[_rS, _nT],
|
|
1814
|
+
[() => RecommendationSummaryList, 0], 1
|
|
1815
|
+
];
|
|
1390
1816
|
export var ListSessionsInput$ = [3, n0, _LSI,
|
|
1391
1817
|
0,
|
|
1392
|
-
[_mI, _aI, _mRa, _nT,
|
|
1818
|
+
[_mI, _aI, _mRa, _nT, _fi],
|
|
1393
1819
|
[[0, 1], [0, 1], 1, 0, () => SessionFilter$], 2
|
|
1394
1820
|
];
|
|
1395
1821
|
export var ListSessionsOutput$ = [3, n0, _LSO,
|
|
@@ -1410,17 +1836,17 @@ export var McpDescriptor$ = [3, n0, _MD,
|
|
|
1410
1836
|
export var MemoryMetadataFilterExpression$ = [3, n0, _MMFE,
|
|
1411
1837
|
0,
|
|
1412
1838
|
[_le, _o, _ri],
|
|
1413
|
-
[() =>
|
|
1839
|
+
[() => MemoryRecordLeftExpression$, 0, () => MemoryRecordRightExpression$], 2
|
|
1414
1840
|
];
|
|
1415
1841
|
export var MemoryRecord$ = [3, n0, _MR,
|
|
1416
1842
|
0,
|
|
1417
|
-
[_mRI, _co, _mSIe, _nam, _cA,
|
|
1418
|
-
[0, [() => MemoryContent$, 0], 0, 64 | 0, 4, () =>
|
|
1843
|
+
[_mRI, _co, _mSIe, _nam, _cA, _met],
|
|
1844
|
+
[0, [() => MemoryContent$, 0], 0, 64 | 0, 4, () => MemoryRecordMetadataMap], 5
|
|
1419
1845
|
];
|
|
1420
1846
|
export var MemoryRecordCreateInput$ = [3, n0, _MRCI,
|
|
1421
1847
|
0,
|
|
1422
|
-
[
|
|
1423
|
-
[0, 64 | 0, [() => MemoryContent$, 0], 4, 0], 4
|
|
1848
|
+
[_rIe, _nam, _co, _tim, _mSIe, _met],
|
|
1849
|
+
[0, 64 | 0, [() => MemoryContent$, 0], 4, 0, () => MemoryRecordMetadataMap], 4
|
|
1424
1850
|
];
|
|
1425
1851
|
export var MemoryRecordDeleteInput$ = [3, n0, _MRDI,
|
|
1426
1852
|
0,
|
|
@@ -1429,18 +1855,18 @@ export var MemoryRecordDeleteInput$ = [3, n0, _MRDI,
|
|
|
1429
1855
|
];
|
|
1430
1856
|
export var MemoryRecordOutput$ = [3, n0, _MRO,
|
|
1431
1857
|
0,
|
|
1432
|
-
[_mRI, _sta,
|
|
1858
|
+
[_mRI, _sta, _rIe, _eCr, _eMr],
|
|
1433
1859
|
[0, 0, 0, 1, 0], 2
|
|
1434
1860
|
];
|
|
1435
1861
|
export var MemoryRecordSummary$ = [3, n0, _MRS,
|
|
1436
1862
|
0,
|
|
1437
|
-
[_mRI, _co, _mSIe, _nam, _cA, _sco,
|
|
1438
|
-
[0, [() => MemoryContent$, 0], 0, 64 | 0, 4, 1, () =>
|
|
1863
|
+
[_mRI, _co, _mSIe, _nam, _cA, _sco, _met],
|
|
1864
|
+
[0, [() => MemoryContent$, 0], 0, 64 | 0, 4, 1, () => MemoryRecordMetadataMap], 5
|
|
1439
1865
|
];
|
|
1440
1866
|
export var MemoryRecordUpdateInput$ = [3, n0, _MRUI,
|
|
1441
1867
|
0,
|
|
1442
|
-
[_mRI, _tim, _co, _nam, _mSIe],
|
|
1443
|
-
[0, 4, [() => MemoryContent$, 0], 64 | 0, 0], 2
|
|
1868
|
+
[_mRI, _tim, _co, _nam, _mSIe, _met],
|
|
1869
|
+
[0, 4, [() => MemoryContent$, 0], 64 | 0, 0, () => MemoryRecordMetadataMap], 2
|
|
1444
1870
|
];
|
|
1445
1871
|
export var MessageMetadata$ = [3, n0, _MM,
|
|
1446
1872
|
0,
|
|
@@ -1492,6 +1918,11 @@ export var OAuthCredentialProvider$ = [3, n0, _OACP,
|
|
|
1492
1918
|
[_pA, _sc, _cP, _gT, _dRU],
|
|
1493
1919
|
[0, 64 | 0, [() => OAuthCustomParameters, 0], 0, 0], 2
|
|
1494
1920
|
];
|
|
1921
|
+
export var PerVariantOnlineEvaluationConfig$ = [3, n0, _PVOEC,
|
|
1922
|
+
0,
|
|
1923
|
+
[_n, _oECA],
|
|
1924
|
+
[0, 0], 2
|
|
1925
|
+
];
|
|
1495
1926
|
export var ProxyBypass$ = [3, n0, _PB,
|
|
1496
1927
|
0,
|
|
1497
1928
|
[_dP],
|
|
@@ -1502,14 +1933,34 @@ export var ProxyConfiguration$ = [3, n0, _PC,
|
|
|
1502
1933
|
[_pro, _by],
|
|
1503
1934
|
[() => Proxies, () => ProxyBypass$], 1
|
|
1504
1935
|
];
|
|
1936
|
+
export var RecommendationEvaluationConfig$ = [3, n0, _REC,
|
|
1937
|
+
0,
|
|
1938
|
+
[_ev],
|
|
1939
|
+
[() => RecommendationEvaluatorList], 1
|
|
1940
|
+
];
|
|
1941
|
+
export var RecommendationEvaluatorReference$ = [3, n0, _RER,
|
|
1942
|
+
0,
|
|
1943
|
+
[_eA],
|
|
1944
|
+
[0], 1
|
|
1945
|
+
];
|
|
1946
|
+
export var RecommendationResultConfigurationBundle$ = [3, n0, _RRCB,
|
|
1947
|
+
0,
|
|
1948
|
+
[_bA, _vI],
|
|
1949
|
+
[0, 0], 2
|
|
1950
|
+
];
|
|
1951
|
+
export var RecommendationSummary$ = [3, n0, _RSe,
|
|
1952
|
+
0,
|
|
1953
|
+
[_rI, _rAe, _n, _t, _sta, _cA, _uA, _d],
|
|
1954
|
+
[0, 0, 0, 0, 0, 5, 5, 0], 7
|
|
1955
|
+
];
|
|
1505
1956
|
export var RegistryRecordSummary$ = [3, n0, _RRS,
|
|
1506
1957
|
0,
|
|
1507
|
-
[
|
|
1958
|
+
[_rAeg, _rAec, _rIec, _n, _dT, _des, _ve, _sta, _cA, _uA, _d],
|
|
1508
1959
|
[0, 0, 0, 0, 0, () => Descriptors$, 0, 0, 5, 5, [() => Description, 0]], 10
|
|
1509
1960
|
];
|
|
1510
1961
|
export var ResourceContent$ = [3, n0, _RC,
|
|
1511
1962
|
0,
|
|
1512
|
-
[_t,
|
|
1963
|
+
[_t, _ur, _mT, _te, _bl],
|
|
1513
1964
|
[0, 0, 0, 0, 21], 1
|
|
1514
1965
|
];
|
|
1515
1966
|
export var ResponseChunk$ = [3, n0, _RCe,
|
|
@@ -1549,7 +2000,7 @@ export var ScreenshotArguments$ = [3, n0, _SA,
|
|
|
1549
2000
|
];
|
|
1550
2001
|
export var ScreenshotResult$ = [3, n0, _SR,
|
|
1551
2002
|
0,
|
|
1552
|
-
[_sta, _e,
|
|
2003
|
+
[_sta, _e, _da],
|
|
1553
2004
|
[0, 0, 21], 1
|
|
1554
2005
|
];
|
|
1555
2006
|
export var SearchCriteria$ = [3, n0, _SC,
|
|
@@ -1559,12 +2010,12 @@ export var SearchCriteria$ = [3, n0, _SC,
|
|
|
1559
2010
|
];
|
|
1560
2011
|
export var SearchRegistryRecordsRequest$ = [3, n0, _SRRR,
|
|
1561
2012
|
0,
|
|
1562
|
-
[_sQ, _rIeg, _mRa,
|
|
2013
|
+
[_sQ, _rIeg, _mRa, _f],
|
|
1563
2014
|
[0, 64 | 0, 1, 15], 2
|
|
1564
2015
|
];
|
|
1565
2016
|
export var SearchRegistryRecordsResponse$ = [3, n0, _SRRRe,
|
|
1566
2017
|
0,
|
|
1567
|
-
[
|
|
2018
|
+
[_rRe],
|
|
1568
2019
|
[[() => RegistryRecordSummaryList, 0]], 1
|
|
1569
2020
|
];
|
|
1570
2021
|
export var SecretsManagerLocation$ = [3, n0, _SML,
|
|
@@ -1582,6 +2033,16 @@ export var SessionFilter$ = [3, n0, _SF,
|
|
|
1582
2033
|
[_eF],
|
|
1583
2034
|
[0]
|
|
1584
2035
|
];
|
|
2036
|
+
export var SessionFilterConfig$ = [3, n0, _SFC,
|
|
2037
|
+
0,
|
|
2038
|
+
[_sT, _eT],
|
|
2039
|
+
[5, 5]
|
|
2040
|
+
];
|
|
2041
|
+
export var SessionMetadataShape$ = [3, n0, _SMS,
|
|
2042
|
+
0,
|
|
2043
|
+
[_sI, _tSI, _gTr, _met],
|
|
2044
|
+
[0, 0, () => GroundTruthSource$, 128 | 0], 1
|
|
2045
|
+
];
|
|
1585
2046
|
export var SessionSummary$ = [3, n0, _SSe,
|
|
1586
2047
|
0,
|
|
1587
2048
|
[_sI, _aI, _cA],
|
|
@@ -1602,6 +2063,16 @@ export var SpanContext$ = [3, n0, _SCp,
|
|
|
1602
2063
|
[_sI, _tI, _sIp],
|
|
1603
2064
|
[0, 0, 0], 1
|
|
1604
2065
|
];
|
|
2066
|
+
export var StartBatchEvaluationRequest$ = [3, n0, _SBER,
|
|
2067
|
+
0,
|
|
2068
|
+
[_bEN, _dSC, _ev, _cT, _eMva, _d],
|
|
2069
|
+
[0, () => DataSourceConfig$, () => EvaluatorList, [0, 4], () => EvaluationMetadata$, 0], 2
|
|
2070
|
+
];
|
|
2071
|
+
export var StartBatchEvaluationResponse$ = [3, n0, _SBERt,
|
|
2072
|
+
0,
|
|
2073
|
+
[_bEI, _bEA, _bEN, _sta, _cA, _ev, _oC, _d],
|
|
2074
|
+
[0, 0, 0, 0, 5, () => EvaluatorList, () => OutputConfig$, 0], 5
|
|
2075
|
+
];
|
|
1605
2076
|
export var StartBrowserSessionRequest$ = [3, n0, _SBSR,
|
|
1606
2077
|
0,
|
|
1607
2078
|
[_bI, _tI, _tPr, _n, _sTS, _vP, _ext, _pC, _pCr, _eP, _ce, _cT],
|
|
@@ -1632,6 +2103,26 @@ export var StartMemoryExtractionJobOutput$ = [3, n0, _SMEJO,
|
|
|
1632
2103
|
[_jI],
|
|
1633
2104
|
[0], 1
|
|
1634
2105
|
];
|
|
2106
|
+
export var StartRecommendationRequest$ = [3, n0, _SRR,
|
|
2107
|
+
0,
|
|
2108
|
+
[_n, _t, _rC, _d, _cT],
|
|
2109
|
+
[0, 0, [() => RecommendationConfig$, 0], 0, [0, 4]], 3
|
|
2110
|
+
];
|
|
2111
|
+
export var StartRecommendationResponse$ = [3, n0, _SRRt,
|
|
2112
|
+
0,
|
|
2113
|
+
[_rI, _rAe, _n, _t, _rC, _sta, _cA, _uA, _d],
|
|
2114
|
+
[0, 0, 0, 0, [() => RecommendationConfig$, 0], 0, 5, 5, 0], 8
|
|
2115
|
+
];
|
|
2116
|
+
export var StopBatchEvaluationRequest$ = [3, n0, _SBERto,
|
|
2117
|
+
0,
|
|
2118
|
+
[_bEI],
|
|
2119
|
+
[[0, 1]], 1
|
|
2120
|
+
];
|
|
2121
|
+
export var StopBatchEvaluationResponse$ = [3, n0, _SBERtop,
|
|
2122
|
+
0,
|
|
2123
|
+
[_bEI, _bEA, _sta, _d],
|
|
2124
|
+
[0, 0, 0, 0], 3
|
|
2125
|
+
];
|
|
1635
2126
|
export var StopBrowserSessionRequest$ = [3, n0, _SBSRto,
|
|
1636
2127
|
0,
|
|
1637
2128
|
[_bI, _sI, _tI, _tPr, _cT],
|
|
@@ -1662,6 +2153,26 @@ export var StopRuntimeSessionResponse$ = [3, n0, _SRSRt,
|
|
|
1662
2153
|
[_rSI, _sCt],
|
|
1663
2154
|
[[0, { [_hH]: _XABARSI }], [1, 32]]
|
|
1664
2155
|
];
|
|
2156
|
+
export var SystemPromptConfigurationBundle$ = [3, n0, _SPCB,
|
|
2157
|
+
0,
|
|
2158
|
+
[_bA, _vI, _sPJP],
|
|
2159
|
+
[0, 0, 0], 3
|
|
2160
|
+
];
|
|
2161
|
+
export var SystemPromptRecommendationConfig$ = [3, n0, _SPRC,
|
|
2162
|
+
0,
|
|
2163
|
+
[_sP, _aTg, _eCv],
|
|
2164
|
+
[[() => SystemPromptConfig$, 0], [() => AgentTracesConfig$, 0], () => RecommendationEvaluationConfig$], 3
|
|
2165
|
+
];
|
|
2166
|
+
export var SystemPromptRecommendationResult$ = [3, n0, _SPRR,
|
|
2167
|
+
0,
|
|
2168
|
+
[_rSP, _cB, _eCr, _eMr],
|
|
2169
|
+
[[() => SystemPromptText, 0], () => RecommendationResultConfigurationBundle$, 0, 0]
|
|
2170
|
+
];
|
|
2171
|
+
export var TargetRef$ = [3, n0, _TR,
|
|
2172
|
+
0,
|
|
2173
|
+
[_n],
|
|
2174
|
+
[0], 1
|
|
2175
|
+
];
|
|
1665
2176
|
export var TokenUsage$ = [3, n0, _TU,
|
|
1666
2177
|
0,
|
|
1667
2178
|
[_iTn, _oT, _tT],
|
|
@@ -1669,9 +2180,39 @@ export var TokenUsage$ = [3, n0, _TU,
|
|
|
1669
2180
|
];
|
|
1670
2181
|
export var ToolArguments$ = [3, n0, _TA,
|
|
1671
2182
|
0,
|
|
1672
|
-
[_cod, _lan, _cCl, _com, _pa, _pat, _co, _dPi, _tIa,
|
|
2183
|
+
[_cod, _lan, _cCl, _com, _pa, _pat, _co, _dPi, _tIa, _run],
|
|
1673
2184
|
[0, 0, 2, 0, 0, 64 | 0, [() => InputContentBlockList, 0], 0, 0, 0]
|
|
1674
2185
|
];
|
|
2186
|
+
export var ToolDescriptionConfigurationBundle$ = [3, n0, _TDCB,
|
|
2187
|
+
0,
|
|
2188
|
+
[_bA, _vI, _to],
|
|
2189
|
+
[0, 0, () => ConfigurationBundleToolEntryList], 3
|
|
2190
|
+
];
|
|
2191
|
+
export var ToolDescriptionInput$ = [3, n0, _TDI,
|
|
2192
|
+
0,
|
|
2193
|
+
[_tN, _tD],
|
|
2194
|
+
[0, [() => ToolDescriptionConfig$, 0]], 2
|
|
2195
|
+
];
|
|
2196
|
+
export var ToolDescriptionOutput$ = [3, n0, _TDO,
|
|
2197
|
+
0,
|
|
2198
|
+
[_tN, _rTD],
|
|
2199
|
+
[0, [() => ToolDescriptionText, 0]], 1
|
|
2200
|
+
];
|
|
2201
|
+
export var ToolDescriptionRecommendationConfig$ = [3, n0, _TDRC,
|
|
2202
|
+
0,
|
|
2203
|
+
[_tD, _aTg],
|
|
2204
|
+
[[() => ToolDescriptionSource$, 0], [() => AgentTracesConfig$, 0]], 2
|
|
2205
|
+
];
|
|
2206
|
+
export var ToolDescriptionRecommendationResult$ = [3, n0, _TDRR,
|
|
2207
|
+
0,
|
|
2208
|
+
[_to, _cB, _eCr, _eMr],
|
|
2209
|
+
[[() => ToolDescriptionResultList, 0], () => RecommendationResultConfigurationBundle$, 0, 0]
|
|
2210
|
+
];
|
|
2211
|
+
export var ToolDescriptionTextInput$ = [3, n0, _TDTI,
|
|
2212
|
+
0,
|
|
2213
|
+
[_to],
|
|
2214
|
+
[[() => ToolDescriptionList, 0]], 1
|
|
2215
|
+
];
|
|
1675
2216
|
export var ToolResultStructuredContent$ = [3, n0, _TRSC,
|
|
1676
2217
|
0,
|
|
1677
2218
|
[_tIa, _tSa, _std, _stde, _eC, _eTxe],
|
|
@@ -1682,6 +2223,16 @@ export var ToolsDefinition$ = [3, n0, _TD,
|
|
|
1682
2223
|
[_pV, _iC],
|
|
1683
2224
|
[0, 0]
|
|
1684
2225
|
];
|
|
2226
|
+
export var UpdateABTestRequest$ = [3, n0, _UABTR,
|
|
2227
|
+
0,
|
|
2228
|
+
[_aTI, _cT, _n, _d, _va, _gF, _eCv, _rA, _eS],
|
|
2229
|
+
[[0, 1], [0, 4], 0, 0, () => VariantList, () => GatewayFilter$, () => ABTestEvaluationConfig$, 0, 0], 1
|
|
2230
|
+
];
|
|
2231
|
+
export var UpdateABTestResponse$ = [3, n0, _UABTRp,
|
|
2232
|
+
0,
|
|
2233
|
+
[_aTI, _aTA, _sta, _eS, _uA],
|
|
2234
|
+
[0, 0, 0, 0, 4], 5
|
|
2235
|
+
];
|
|
1685
2236
|
export var UpdateBrowserStreamRequest$ = [3, n0, _UBSR,
|
|
1686
2237
|
0,
|
|
1687
2238
|
[_bI, _sI, _sUt, _cT],
|
|
@@ -1697,15 +2248,37 @@ export var ValidationExceptionField$ = [3, n0, _VEF,
|
|
|
1697
2248
|
[_n, _m],
|
|
1698
2249
|
[0, 0], 2
|
|
1699
2250
|
];
|
|
2251
|
+
export var Variant$ = [3, n0, _V,
|
|
2252
|
+
0,
|
|
2253
|
+
[_n, _w, _vC],
|
|
2254
|
+
[0, 1, () => VariantConfiguration$], 3
|
|
2255
|
+
];
|
|
2256
|
+
export var VariantConfiguration$ = [3, n0, _VC,
|
|
2257
|
+
0,
|
|
2258
|
+
[_cB, _ta],
|
|
2259
|
+
[() => ConfigurationBundleRef$, () => TargetRef$]
|
|
2260
|
+
];
|
|
2261
|
+
export var VariantResult$ = [3, n0, _VR,
|
|
2262
|
+
0,
|
|
2263
|
+
[_vN, _sSa, _me, _iSs, _aCb, _pCe, _pVa, _cI],
|
|
2264
|
+
[0, 1, 1, 2, 1, 1, 1, () => ConfidenceInterval$], 4
|
|
2265
|
+
];
|
|
1700
2266
|
export var ViewPort$ = [3, n0, _VP,
|
|
1701
2267
|
0,
|
|
1702
|
-
[
|
|
2268
|
+
[_wi, _he],
|
|
1703
2269
|
[1, 1], 2
|
|
1704
2270
|
];
|
|
1705
2271
|
var __Unit = "unit";
|
|
2272
|
+
var ABTestSummaryList = [1, n0, _ABTSL,
|
|
2273
|
+
0, () => ABTestSummary$
|
|
2274
|
+
];
|
|
1706
2275
|
var ActorSummaryList = [1, n0, _ASL,
|
|
1707
2276
|
0, () => ActorSummary$
|
|
1708
2277
|
];
|
|
2278
|
+
var AudiencesListType = 64 | 0;
|
|
2279
|
+
var BatchEvaluationSummaryList = [1, n0, _BESL,
|
|
2280
|
+
0, () => BatchEvaluationSummary$
|
|
2281
|
+
];
|
|
1709
2282
|
var BrowserEnterprisePolicies = [1, n0, _BEPr,
|
|
1710
2283
|
0, () => BrowserEnterprisePolicy$
|
|
1711
2284
|
];
|
|
@@ -1718,13 +2291,20 @@ var BrowserSessionSummaries = [1, n0, _BSSro,
|
|
|
1718
2291
|
var Certificates = [1, n0, _Ce,
|
|
1719
2292
|
0, () => Certificate$
|
|
1720
2293
|
];
|
|
2294
|
+
var CloudWatchLogsFilterList = [1, n0, _CWLFL,
|
|
2295
|
+
0, () => CloudWatchLogsFilter$
|
|
2296
|
+
];
|
|
1721
2297
|
var CodeInterpreterSessionSummaries = [1, n0, _CISSo,
|
|
1722
2298
|
0, () => CodeInterpreterSessionSummary$
|
|
1723
2299
|
];
|
|
2300
|
+
var ConfigurationBundleToolEntryList = [1, n0, _CBTEL,
|
|
2301
|
+
0, () => ConfigurationBundleToolEntry$
|
|
2302
|
+
];
|
|
1724
2303
|
var ContentBlockList = [1, n0, _CBL,
|
|
1725
2304
|
0, () => ContentBlock$
|
|
1726
2305
|
];
|
|
1727
2306
|
var DomainPatterns = 64 | 0;
|
|
2307
|
+
var ErrorDetailsList = 64 | 0;
|
|
1728
2308
|
var EvaluationContentList = [1, n0, _ECL,
|
|
1729
2309
|
0, () => EvaluationContent$
|
|
1730
2310
|
];
|
|
@@ -1735,8 +2315,18 @@ var EvaluationResults = [1, n0, _ERva,
|
|
|
1735
2315
|
0, [() => EvaluationResultContent$,
|
|
1736
2316
|
0]
|
|
1737
2317
|
];
|
|
2318
|
+
var EvaluationStringList = 64 | 0;
|
|
1738
2319
|
var EvaluationToolNames = 64 | 0;
|
|
1739
|
-
var
|
|
2320
|
+
var EvaluatorList = [1, n0, _EL,
|
|
2321
|
+
0, () => Evaluator$
|
|
2322
|
+
];
|
|
2323
|
+
var EvaluatorMetricList = [1, n0, _EML,
|
|
2324
|
+
0, () => EvaluatorMetric$
|
|
2325
|
+
];
|
|
2326
|
+
var EvaluatorSummaryList = [1, n0, _ESL,
|
|
2327
|
+
0, () => EvaluatorSummary$
|
|
2328
|
+
];
|
|
2329
|
+
var EventList = [1, n0, _ELv,
|
|
1740
2330
|
0, [() => Event$,
|
|
1741
2331
|
0]
|
|
1742
2332
|
];
|
|
@@ -1746,6 +2336,9 @@ var EventMetadataFilterList = [1, n0, _EMFL,
|
|
|
1746
2336
|
var ExtractionJobMetadataList = [1, n0, _EJML,
|
|
1747
2337
|
0, () => ExtractionJobMetadata$
|
|
1748
2338
|
];
|
|
2339
|
+
var GroundTruthTurnList = [1, n0, _GTTL,
|
|
2340
|
+
0, () => GroundTruthTurn$
|
|
2341
|
+
];
|
|
1749
2342
|
var HarnessAllowedTools = 64 | 0;
|
|
1750
2343
|
var HarnessContentBlocks = [1, n0, _HCB,
|
|
1751
2344
|
0, [() => HarnessContentBlock$,
|
|
@@ -1780,6 +2373,7 @@ var InputContentBlockList = [1, n0, _ICBL,
|
|
|
1780
2373
|
0]
|
|
1781
2374
|
];
|
|
1782
2375
|
var KeyList = 64 | 0;
|
|
2376
|
+
var LogGroupArnList = 64 | 0;
|
|
1783
2377
|
var MemoryMetadataFilterList = [1, n0, _MMFL,
|
|
1784
2378
|
0, () => MemoryMetadataFilterExpression$
|
|
1785
2379
|
];
|
|
@@ -1810,15 +2404,29 @@ var PayloadTypeList = [1, n0, _PTL,
|
|
|
1810
2404
|
0, [() => PayloadType$,
|
|
1811
2405
|
0]
|
|
1812
2406
|
];
|
|
2407
|
+
var PerVariantOnlineEvaluationConfigList = [1, n0, _PVOECL,
|
|
2408
|
+
0, () => PerVariantOnlineEvaluationConfig$
|
|
2409
|
+
];
|
|
1813
2410
|
var Proxies = [1, n0, _P,
|
|
1814
2411
|
0, () => Proxy$
|
|
1815
2412
|
];
|
|
2413
|
+
var RecommendationEvaluatorList = [1, n0, _REL,
|
|
2414
|
+
0, () => RecommendationEvaluatorReference$
|
|
2415
|
+
];
|
|
2416
|
+
var RecommendationSummaryList = [1, n0, _RSL,
|
|
2417
|
+
0, () => RecommendationSummary$
|
|
2418
|
+
];
|
|
1816
2419
|
var RegistryIdList = 64 | 0;
|
|
1817
2420
|
var RegistryRecordSummaryList = [1, n0, _RRSL,
|
|
1818
2421
|
0, [() => RegistryRecordSummary$,
|
|
1819
2422
|
0]
|
|
1820
2423
|
];
|
|
2424
|
+
var ResourcesListType = 64 | 0;
|
|
1821
2425
|
var ScopesListType = 64 | 0;
|
|
2426
|
+
var ServiceNameList = 64 | 0;
|
|
2427
|
+
var SessionMetadataList = [1, n0, _SMLe,
|
|
2428
|
+
0, () => SessionMetadataShape$
|
|
2429
|
+
];
|
|
1822
2430
|
var SessionSummaryList = [1, n0, _SSL,
|
|
1823
2431
|
0, () => SessionSummary$
|
|
1824
2432
|
];
|
|
@@ -1827,10 +2435,26 @@ var Spans = [1, n0, _Sp,
|
|
|
1827
2435
|
8, 15
|
|
1828
2436
|
];
|
|
1829
2437
|
var StringList = 64 | 0;
|
|
2438
|
+
var StringValueList = 64 | 0;
|
|
2439
|
+
var TargetPathList = 64 | 0;
|
|
2440
|
+
var ToolDescriptionList = [1, n0, _TDL,
|
|
2441
|
+
0, [() => ToolDescriptionInput$,
|
|
2442
|
+
0]
|
|
2443
|
+
];
|
|
2444
|
+
var ToolDescriptionResultList = [1, n0, _TDRL,
|
|
2445
|
+
0, [() => ToolDescriptionOutput$,
|
|
2446
|
+
0]
|
|
2447
|
+
];
|
|
1830
2448
|
var TraceIds = 64 | 0;
|
|
1831
2449
|
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1832
2450
|
0, () => ValidationExceptionField$
|
|
1833
2451
|
];
|
|
2452
|
+
var VariantList = [1, n0, _VL,
|
|
2453
|
+
0, () => Variant$
|
|
2454
|
+
];
|
|
2455
|
+
var VariantResultList = [1, n0, _VRL,
|
|
2456
|
+
0, () => VariantResult$
|
|
2457
|
+
];
|
|
1834
2458
|
var CustomRequestParametersType = [2, n0, _CRPT,
|
|
1835
2459
|
0, [0,
|
|
1836
2460
|
0],
|
|
@@ -1840,6 +2464,9 @@ var CustomRequestParametersType = [2, n0, _CRPT,
|
|
|
1840
2464
|
var HttpHeadersMap = [2, n0, _HHM,
|
|
1841
2465
|
8, 0, 0
|
|
1842
2466
|
];
|
|
2467
|
+
var MemoryRecordMetadataMap = [2, n0, _MRMM,
|
|
2468
|
+
0, 0, () => MemoryRecordMetadataValue$
|
|
2469
|
+
];
|
|
1843
2470
|
var MetadataMap = [2, n0, _MMe,
|
|
1844
2471
|
0, 0, () => MetadataValue$
|
|
1845
2472
|
];
|
|
@@ -1849,6 +2476,17 @@ var OAuthCustomParameters = [2, n0, _OACPu,
|
|
|
1849
2476
|
[() => OAuthCustomParametersValue,
|
|
1850
2477
|
0]
|
|
1851
2478
|
];
|
|
2479
|
+
var StringMap = 128 | 0;
|
|
2480
|
+
export var ABTestEvaluationConfig$ = [4, n0, _ABTEC,
|
|
2481
|
+
0,
|
|
2482
|
+
[_oECA, _pVOEC],
|
|
2483
|
+
[0, () => PerVariantOnlineEvaluationConfigList]
|
|
2484
|
+
];
|
|
2485
|
+
export var AgentTracesConfig$ = [4, n0, _ATC,
|
|
2486
|
+
0,
|
|
2487
|
+
[_sSess, _cL],
|
|
2488
|
+
[[() => Spans, 0], () => CloudWatchLogsTraceConfig$]
|
|
2489
|
+
];
|
|
1852
2490
|
export var BrowserAction$ = [4, n0, _BAr,
|
|
1853
2491
|
0,
|
|
1854
2492
|
[_mC, _mM, _mD, _mS, _kT, _kP, _kS, _scr],
|
|
@@ -1866,7 +2504,7 @@ export var CertificateLocation$ = [4, n0, _CL,
|
|
|
1866
2504
|
];
|
|
1867
2505
|
export var CodeInterpreterStreamOutput$ = [4, n0, _CISO,
|
|
1868
2506
|
{ [_st]: 1 },
|
|
1869
|
-
[
|
|
2507
|
+
[_resul, _aDE, _cE, _iSE, _rNFE, _sQEE, _tEh, _vE],
|
|
1870
2508
|
[() => CodeInterpreterResult$, [() => AccessDeniedException$, 0], [() => ConflictException$, 0], [() => InternalServerException$, 0], [() => ResourceNotFoundException$, 0], [() => ServiceQuotaExceededException$, 0], [() => ThrottlingException$, 0], [() => ValidationException$, 0]]
|
|
1871
2509
|
];
|
|
1872
2510
|
export var Content$ = [4, n0, _Con,
|
|
@@ -1879,6 +2517,11 @@ export var Context$ = [4, n0, _Cont,
|
|
|
1879
2517
|
[_sCp],
|
|
1880
2518
|
[() => SpanContext$]
|
|
1881
2519
|
];
|
|
2520
|
+
export var DataSourceConfig$ = [4, n0, _DSC,
|
|
2521
|
+
0,
|
|
2522
|
+
[_cWL],
|
|
2523
|
+
[() => CloudWatchLogsSource$]
|
|
2524
|
+
];
|
|
1882
2525
|
export var EvaluationContent$ = [4, n0, _EC,
|
|
1883
2526
|
0,
|
|
1884
2527
|
[_te],
|
|
@@ -1889,6 +2532,11 @@ export var EvaluationInput$ = [4, n0, _EI,
|
|
|
1889
2532
|
[_sSess],
|
|
1890
2533
|
[[() => Spans, 0]]
|
|
1891
2534
|
];
|
|
2535
|
+
export var EvaluationMetadata$ = [4, n0, _EMv,
|
|
2536
|
+
0,
|
|
2537
|
+
[_sMes],
|
|
2538
|
+
[() => SessionMetadataList]
|
|
2539
|
+
];
|
|
1892
2540
|
export var EvaluationTarget$ = [4, n0, _ET,
|
|
1893
2541
|
0,
|
|
1894
2542
|
[_sIpa, _tIr],
|
|
@@ -1899,19 +2547,34 @@ export var ExtractionJobMessages$ = [4, n0, _EJMx,
|
|
|
1899
2547
|
[_mL],
|
|
1900
2548
|
[() => MessagesList]
|
|
1901
2549
|
];
|
|
2550
|
+
export var FilterValue$ = [4, n0, _FV,
|
|
2551
|
+
0,
|
|
2552
|
+
[_sVt, _dV, _bVo],
|
|
2553
|
+
[0, 1, 2]
|
|
2554
|
+
];
|
|
2555
|
+
export var GroundTruthSource$ = [4, n0, _GTS,
|
|
2556
|
+
0,
|
|
2557
|
+
[_in],
|
|
2558
|
+
[() => InlineGroundTruth$]
|
|
2559
|
+
];
|
|
2560
|
+
export var GroundTruthTurnInput$ = [4, n0, _GTTI,
|
|
2561
|
+
0,
|
|
2562
|
+
[_prom],
|
|
2563
|
+
[0]
|
|
2564
|
+
];
|
|
1902
2565
|
export var HarnessContentBlock$ = [4, n0, _HCBa,
|
|
1903
2566
|
0,
|
|
1904
|
-
[_te, _tUo,
|
|
2567
|
+
[_te, _tUo, _tRo, _rCe],
|
|
1905
2568
|
[[() => SensitiveText, 0], [() => HarnessToolUseBlock$, 0], [() => HarnessToolResultBlock$, 0], [() => HarnessReasoningContentBlock$, 0]]
|
|
1906
2569
|
];
|
|
1907
2570
|
export var HarnessContentBlockDelta$ = [4, n0, _HCBD,
|
|
1908
2571
|
0,
|
|
1909
|
-
[_te, _tUo,
|
|
2572
|
+
[_te, _tUo, _tRo, _rCe],
|
|
1910
2573
|
[[() => SensitiveText, 0], [() => HarnessToolUseBlockDelta$, 0], [() => HarnessToolResultBlocksDelta, 0], [() => HarnessReasoningContentBlockDelta$, 0]]
|
|
1911
2574
|
];
|
|
1912
2575
|
export var HarnessContentBlockStart$ = [4, n0, _HCBS,
|
|
1913
2576
|
0,
|
|
1914
|
-
[_tUo,
|
|
2577
|
+
[_tUo, _tRo],
|
|
1915
2578
|
[() => HarnessToolUseBlockStart$, () => HarnessToolResultBlockStart$]
|
|
1916
2579
|
];
|
|
1917
2580
|
export var HarnessGatewayOutboundAuth$ = [4, n0, _HGOA,
|
|
@@ -1926,12 +2589,12 @@ export var HarnessModelConfiguration$ = [4, n0, _HMC,
|
|
|
1926
2589
|
];
|
|
1927
2590
|
export var HarnessReasoningContentBlock$ = [4, n0, _HRCB,
|
|
1928
2591
|
8,
|
|
1929
|
-
[_rT,
|
|
2592
|
+
[_rT, _rCed],
|
|
1930
2593
|
[[() => HarnessReasoningTextBlock$, 0], 21]
|
|
1931
2594
|
];
|
|
1932
2595
|
export var HarnessReasoningContentBlockDelta$ = [4, n0, _HRCBD,
|
|
1933
2596
|
8,
|
|
1934
|
-
[_te,
|
|
2597
|
+
[_te, _rCed, _sig],
|
|
1935
2598
|
[0, [() => Body, 0], 0]
|
|
1936
2599
|
];
|
|
1937
2600
|
export var HarnessSkill$ = [4, n0, _HSa,
|
|
@@ -1961,12 +2624,12 @@ export var HarnessToolResultContentBlock$ = [4, n0, _HTRCBa,
|
|
|
1961
2624
|
];
|
|
1962
2625
|
export var InvokeAgentRuntimeCommandStreamOutput$ = [4, n0, _IARCSO,
|
|
1963
2626
|
{ [_st]: 1 },
|
|
1964
|
-
[_ch, _aDE, _iSE, _rNFE, _sQEE,
|
|
2627
|
+
[_ch, _aDE, _iSE, _rNFE, _sQEE, _tEh, _vE, _rCE],
|
|
1965
2628
|
[() => ResponseChunk$, [() => AccessDeniedException$, 0], [() => InternalServerException$, 0], [() => ResourceNotFoundException$, 0], [() => ServiceQuotaExceededException$, 0], [() => ThrottlingException$, 0], [() => ValidationException$, 0], [() => RuntimeClientError$, 0]]
|
|
1966
2629
|
];
|
|
1967
2630
|
export var InvokeHarnessStreamOutput$ = [4, n0, _IHSO,
|
|
1968
2631
|
{ [_st]: 1 },
|
|
1969
|
-
[_mSe, _cBS, _cBD, _cBSo, _mSes,
|
|
2632
|
+
[_mSe, _cBS, _cBD, _cBSo, _mSes, _met, _iSE, _vE, _rCE],
|
|
1970
2633
|
[() => HarnessMessageStartEvent$, () => HarnessContentBlockStartEvent$, [() => HarnessContentBlockDeltaEvent$, 0], () => HarnessContentBlockStopEvent$, () => HarnessMessageStopEvent$, () => HarnessMetadataEvent$, [() => InternalServerException$, 0], [() => ValidationException$, 0], [() => RuntimeClientError$, 0]]
|
|
1971
2634
|
];
|
|
1972
2635
|
export var LeftExpression$ = [4, n0, _LE,
|
|
@@ -1979,11 +2642,31 @@ export var MemoryContent$ = [4, n0, _MC,
|
|
|
1979
2642
|
[_te],
|
|
1980
2643
|
[[() => SensitiveString, 0]]
|
|
1981
2644
|
];
|
|
2645
|
+
export var MemoryRecordLeftExpression$ = [4, n0, _MRLE,
|
|
2646
|
+
0,
|
|
2647
|
+
[_mK],
|
|
2648
|
+
[0]
|
|
2649
|
+
];
|
|
2650
|
+
export var MemoryRecordMetadataValue$ = [4, n0, _MRMV,
|
|
2651
|
+
0,
|
|
2652
|
+
[_sVt, _sLV, _nV, _dTV],
|
|
2653
|
+
[0, 64 | 0, 1, 4]
|
|
2654
|
+
];
|
|
2655
|
+
export var MemoryRecordRightExpression$ = [4, n0, _MRRE,
|
|
2656
|
+
0,
|
|
2657
|
+
[_mV],
|
|
2658
|
+
[() => MemoryRecordMetadataValue$]
|
|
2659
|
+
];
|
|
1982
2660
|
export var MetadataValue$ = [4, n0, _MV,
|
|
1983
2661
|
0,
|
|
1984
2662
|
[_sVt],
|
|
1985
2663
|
[0]
|
|
1986
2664
|
];
|
|
2665
|
+
export var OutputConfig$ = [4, n0, _OC,
|
|
2666
|
+
0,
|
|
2667
|
+
[_cWC],
|
|
2668
|
+
[() => CloudWatchOutputConfig$]
|
|
2669
|
+
];
|
|
1987
2670
|
export var PayloadType$ = [4, n0, _PT,
|
|
1988
2671
|
0,
|
|
1989
2672
|
[_conv, _bl],
|
|
@@ -1999,6 +2682,16 @@ export var ProxyCredentials$ = [4, n0, _PCr,
|
|
|
1999
2682
|
[_bAa],
|
|
2000
2683
|
[() => BasicAuth$]
|
|
2001
2684
|
];
|
|
2685
|
+
export var RecommendationConfig$ = [4, n0, _RCec,
|
|
2686
|
+
0,
|
|
2687
|
+
[_sPRC, _tDRC],
|
|
2688
|
+
[[() => SystemPromptRecommendationConfig$, 0], [() => ToolDescriptionRecommendationConfig$, 0]]
|
|
2689
|
+
];
|
|
2690
|
+
export var RecommendationResult$ = [4, n0, _RR,
|
|
2691
|
+
0,
|
|
2692
|
+
[_sPRR, _tDRR],
|
|
2693
|
+
[[() => SystemPromptRecommendationResult$, 0], [() => ToolDescriptionRecommendationResult$, 0]]
|
|
2694
|
+
];
|
|
2002
2695
|
export var ResourceLocation$ = [4, n0, _RL,
|
|
2003
2696
|
0,
|
|
2004
2697
|
[_s_],
|
|
@@ -2014,6 +2707,21 @@ export var StreamUpdate$ = [4, n0, _SU,
|
|
|
2014
2707
|
[_aSU],
|
|
2015
2708
|
[() => AutomationStreamUpdate$]
|
|
2016
2709
|
];
|
|
2710
|
+
export var SystemPromptConfig$ = [4, n0, _SPC,
|
|
2711
|
+
0,
|
|
2712
|
+
[_te, _cB],
|
|
2713
|
+
[[() => SystemPromptText, 0], () => SystemPromptConfigurationBundle$]
|
|
2714
|
+
];
|
|
2715
|
+
export var ToolDescriptionConfig$ = [4, n0, _TDC,
|
|
2716
|
+
0,
|
|
2717
|
+
[_te],
|
|
2718
|
+
[[() => ToolDescriptionText, 0]]
|
|
2719
|
+
];
|
|
2720
|
+
export var ToolDescriptionSource$ = [4, n0, _TDS,
|
|
2721
|
+
0,
|
|
2722
|
+
[_tDT, _cB],
|
|
2723
|
+
[[() => ToolDescriptionTextInput$, 0], () => ToolDescriptionConfigurationBundle$]
|
|
2724
|
+
];
|
|
2017
2725
|
export var UserIdentifier$ = [4, n0, _UI,
|
|
2018
2726
|
0,
|
|
2019
2727
|
[_uT, _uIs],
|
|
@@ -2031,21 +2739,39 @@ export var BatchUpdateMemoryRecords$ = [9, n0, _BUMR,
|
|
|
2031
2739
|
export var CompleteResourceTokenAuth$ = [9, n0, _CRTA,
|
|
2032
2740
|
{ [_ht]: ["POST", "/identities/CompleteResourceTokenAuth", 200] }, () => CompleteResourceTokenAuthRequest$, () => CompleteResourceTokenAuthResponse$
|
|
2033
2741
|
];
|
|
2742
|
+
export var CreateABTest$ = [9, n0, _CABT,
|
|
2743
|
+
{ [_ht]: ["POST", "/ab-tests", 202] }, () => CreateABTestRequest$, () => CreateABTestResponse$
|
|
2744
|
+
];
|
|
2034
2745
|
export var CreateEvent$ = [9, n0, _CEr,
|
|
2035
2746
|
{ [_ht]: ["POST", "/memories/{memoryId}/events", 201] }, () => CreateEventInput$, () => CreateEventOutput$
|
|
2036
2747
|
];
|
|
2748
|
+
export var DeleteABTest$ = [9, n0, _DABT,
|
|
2749
|
+
{ [_ht]: ["DELETE", "/ab-tests/{abTestId}", 202] }, () => DeleteABTestRequest$, () => DeleteABTestResponse$
|
|
2750
|
+
];
|
|
2751
|
+
export var DeleteBatchEvaluation$ = [9, n0, _DBE,
|
|
2752
|
+
{ [_ht]: ["DELETE", "/evaluations/batch-evaluate/{batchEvaluationId}", 202] }, () => DeleteBatchEvaluationRequest$, () => DeleteBatchEvaluationResponse$
|
|
2753
|
+
];
|
|
2037
2754
|
export var DeleteEvent$ = [9, n0, _DE,
|
|
2038
2755
|
{ [_ht]: ["DELETE", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200] }, () => DeleteEventInput$, () => DeleteEventOutput$
|
|
2039
2756
|
];
|
|
2040
2757
|
export var DeleteMemoryRecord$ = [9, n0, _DMR,
|
|
2041
2758
|
{ [_ht]: ["DELETE", "/memories/{memoryId}/memoryRecords/{memoryRecordId}", 200] }, () => DeleteMemoryRecordInput$, () => DeleteMemoryRecordOutput$
|
|
2042
2759
|
];
|
|
2043
|
-
export var
|
|
2760
|
+
export var DeleteRecommendation$ = [9, n0, _DR,
|
|
2761
|
+
{ [_ht]: ["DELETE", "/recommendations/{recommendationId}", 202] }, () => DeleteRecommendationRequest$, () => DeleteRecommendationResponse$
|
|
2762
|
+
];
|
|
2763
|
+
export var Evaluate$ = [9, n0, _Eva,
|
|
2044
2764
|
{ [_ht]: ["POST", "/evaluations/evaluate/{evaluatorId}", 200] }, () => EvaluateRequest$, () => EvaluateResponse$
|
|
2045
2765
|
];
|
|
2766
|
+
export var GetABTest$ = [9, n0, _GABT,
|
|
2767
|
+
{ [_ht]: ["GET", "/ab-tests/{abTestId}", 200] }, () => GetABTestRequest$, () => GetABTestResponse$
|
|
2768
|
+
];
|
|
2046
2769
|
export var GetAgentCard$ = [9, n0, _GAC,
|
|
2047
2770
|
{ [_ht]: ["GET", "/runtimes/{agentRuntimeArn}/invocations/.well-known/agent-card.json", 200] }, () => GetAgentCardRequest$, () => GetAgentCardResponse$
|
|
2048
2771
|
];
|
|
2772
|
+
export var GetBatchEvaluation$ = [9, n0, _GBE,
|
|
2773
|
+
{ [_ht]: ["GET", "/evaluations/batch-evaluate/{batchEvaluationId}", 200] }, () => GetBatchEvaluationRequest$, () => GetBatchEvaluationResponse$
|
|
2774
|
+
];
|
|
2049
2775
|
export var GetBrowserSession$ = [9, n0, _GBS,
|
|
2050
2776
|
{ [_ht]: ["GET", "/browsers/{browserIdentifier}/sessions/get", 200] }, () => GetBrowserSessionRequest$, () => GetBrowserSessionResponse$
|
|
2051
2777
|
];
|
|
@@ -2058,6 +2784,9 @@ export var GetEvent$ = [9, n0, _GE,
|
|
|
2058
2784
|
export var GetMemoryRecord$ = [9, n0, _GMR,
|
|
2059
2785
|
{ [_ht]: ["GET", "/memories/{memoryId}/memoryRecord/{memoryRecordId}", 200] }, () => GetMemoryRecordInput$, () => GetMemoryRecordOutput$
|
|
2060
2786
|
];
|
|
2787
|
+
export var GetRecommendation$ = [9, n0, _GR,
|
|
2788
|
+
{ [_ht]: ["GET", "/recommendations/{recommendationId}", 200] }, () => GetRecommendationRequest$, () => GetRecommendationResponse$
|
|
2789
|
+
];
|
|
2061
2790
|
export var GetResourceApiKey$ = [9, n0, _GRAK,
|
|
2062
2791
|
{ [_ht]: ["POST", "/identities/api-key", 200] }, () => GetResourceApiKeyRequest$, () => GetResourceApiKeyResponse$
|
|
2063
2792
|
];
|
|
@@ -2088,9 +2817,15 @@ export var InvokeCodeInterpreter$ = [9, n0, _ICI,
|
|
|
2088
2817
|
export var InvokeHarness$ = [9, n0, _IH,
|
|
2089
2818
|
{ [_ht]: ["POST", "/harnesses/invoke", 200] }, () => InvokeHarnessRequest$, () => InvokeHarnessResponse$
|
|
2090
2819
|
];
|
|
2820
|
+
export var ListABTests$ = [9, n0, _LABT,
|
|
2821
|
+
{ [_ht]: ["GET", "/ab-tests", 200] }, () => ListABTestsRequest$, () => ListABTestsResponse$
|
|
2822
|
+
];
|
|
2091
2823
|
export var ListActors$ = [9, n0, _LA,
|
|
2092
2824
|
{ [_ht]: ["POST", "/memories/{memoryId}/actors", 200] }, () => ListActorsInput$, () => ListActorsOutput$
|
|
2093
2825
|
];
|
|
2826
|
+
export var ListBatchEvaluations$ = [9, n0, _LBE,
|
|
2827
|
+
{ [_ht]: ["GET", "/evaluations/batch-evaluate", 200] }, () => ListBatchEvaluationsRequest$, () => ListBatchEvaluationsResponse$
|
|
2828
|
+
];
|
|
2094
2829
|
export var ListBrowserSessions$ = [9, n0, _LBS,
|
|
2095
2830
|
{ [_ht]: ["POST", "/browsers/{browserIdentifier}/sessions/list", 200] }, () => ListBrowserSessionsRequest$, () => ListBrowserSessionsResponse$
|
|
2096
2831
|
];
|
|
@@ -2106,6 +2841,9 @@ export var ListMemoryExtractionJobs$ = [9, n0, _LMEJ,
|
|
|
2106
2841
|
export var ListMemoryRecords$ = [9, n0, _LMR,
|
|
2107
2842
|
{ [_ht]: ["POST", "/memories/{memoryId}/memoryRecords", 200] }, () => ListMemoryRecordsInput$, () => ListMemoryRecordsOutput$
|
|
2108
2843
|
];
|
|
2844
|
+
export var ListRecommendations$ = [9, n0, _LR,
|
|
2845
|
+
{ [_ht]: ["GET", "/recommendations", 200] }, () => ListRecommendationsRequest$, () => ListRecommendationsResponse$
|
|
2846
|
+
];
|
|
2109
2847
|
export var ListSessions$ = [9, n0, _LS,
|
|
2110
2848
|
{ [_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions", 200] }, () => ListSessionsInput$, () => ListSessionsOutput$
|
|
2111
2849
|
];
|
|
@@ -2115,9 +2853,12 @@ export var RetrieveMemoryRecords$ = [9, n0, _RMR,
|
|
|
2115
2853
|
export var SaveBrowserSessionProfile$ = [9, n0, _SBSP,
|
|
2116
2854
|
{ [_ht]: ["PUT", "/browser-profiles/{profileIdentifier}/save", 200] }, () => SaveBrowserSessionProfileRequest$, () => SaveBrowserSessionProfileResponse$
|
|
2117
2855
|
];
|
|
2118
|
-
export var SearchRegistryRecords$ = [9, n0,
|
|
2856
|
+
export var SearchRegistryRecords$ = [9, n0, _SRRe,
|
|
2119
2857
|
{ [_ht]: ["POST", "/registry-records/search", 200] }, () => SearchRegistryRecordsRequest$, () => SearchRegistryRecordsResponse$
|
|
2120
2858
|
];
|
|
2859
|
+
export var StartBatchEvaluation$ = [9, n0, _SBE,
|
|
2860
|
+
{ [_ht]: ["POST", "/evaluations/batch-evaluate", 202] }, () => StartBatchEvaluationRequest$, () => StartBatchEvaluationResponse$
|
|
2861
|
+
];
|
|
2121
2862
|
export var StartBrowserSession$ = [9, n0, _SBS,
|
|
2122
2863
|
{ [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/start", 200] }, () => StartBrowserSessionRequest$, () => StartBrowserSessionResponse$
|
|
2123
2864
|
];
|
|
@@ -2127,6 +2868,12 @@ export var StartCodeInterpreterSession$ = [9, n0, _SCIS,
|
|
|
2127
2868
|
export var StartMemoryExtractionJob$ = [9, n0, _SMEJ,
|
|
2128
2869
|
{ [_ht]: ["POST", "/memories/{memoryId}/extractionJobs/start", 200] }, () => StartMemoryExtractionJobInput$, () => StartMemoryExtractionJobOutput$
|
|
2129
2870
|
];
|
|
2871
|
+
export var StartRecommendation$ = [9, n0, _SRt,
|
|
2872
|
+
{ [_ht]: ["POST", "/recommendations", 202] }, () => StartRecommendationRequest$, () => StartRecommendationResponse$
|
|
2873
|
+
];
|
|
2874
|
+
export var StopBatchEvaluation$ = [9, n0, _SBEt,
|
|
2875
|
+
{ [_ht]: ["POST", "/evaluations/batch-evaluate/{batchEvaluationId}/stop", 202] }, () => StopBatchEvaluationRequest$, () => StopBatchEvaluationResponse$
|
|
2876
|
+
];
|
|
2130
2877
|
export var StopBrowserSession$ = [9, n0, _SBSt,
|
|
2131
2878
|
{ [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/stop", 200] }, () => StopBrowserSessionRequest$, () => StopBrowserSessionResponse$
|
|
2132
2879
|
];
|
|
@@ -2136,6 +2883,9 @@ export var StopCodeInterpreterSession$ = [9, n0, _SCISt,
|
|
|
2136
2883
|
export var StopRuntimeSession$ = [9, n0, _SRS,
|
|
2137
2884
|
{ [_ht]: ["POST", "/runtimes/{agentRuntimeArn}/stopruntimesession", 200] }, () => StopRuntimeSessionRequest$, () => StopRuntimeSessionResponse$
|
|
2138
2885
|
];
|
|
2886
|
+
export var UpdateABTest$ = [9, n0, _UABT,
|
|
2887
|
+
{ [_ht]: ["PUT", "/ab-tests/{abTestId}", 202] }, () => UpdateABTestRequest$, () => UpdateABTestResponse$
|
|
2888
|
+
];
|
|
2139
2889
|
export var UpdateBrowserStream$ = [9, n0, _UBS,
|
|
2140
2890
|
{ [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/streams/update", 200] }, () => UpdateBrowserStreamRequest$, () => UpdateBrowserStreamResponse$
|
|
2141
2891
|
];
|