@aws-sdk/client-bedrock-agentcore 3.940.0 → 3.946.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.
Files changed (81) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +207 -537
  3. package/dist-cjs/runtimeConfig.browser.js +2 -2
  4. package/dist-cjs/runtimeConfig.js +3 -4
  5. package/dist-es/BedrockAgentCore.js +2 -0
  6. package/dist-es/BedrockAgentCoreClient.js +2 -2
  7. package/dist-es/commands/EvaluateCommand.js +16 -0
  8. package/dist-es/commands/index.js +1 -0
  9. package/dist-es/models/errors.js +12 -0
  10. package/dist-es/runtimeConfig.browser.js +2 -2
  11. package/dist-es/runtimeConfig.js +2 -3
  12. package/dist-es/schemas/schemas_0.js +183 -538
  13. package/dist-types/BedrockAgentCore.d.ts +8 -1
  14. package/dist-types/BedrockAgentCoreClient.d.ts +14 -13
  15. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
  16. package/dist-types/auth/httpAuthSchemeProvider.d.ts +2 -2
  17. package/dist-types/commands/BatchCreateMemoryRecordsCommand.d.ts +3 -3
  18. package/dist-types/commands/BatchDeleteMemoryRecordsCommand.d.ts +3 -3
  19. package/dist-types/commands/BatchUpdateMemoryRecordsCommand.d.ts +3 -3
  20. package/dist-types/commands/CompleteResourceTokenAuthCommand.d.ts +3 -3
  21. package/dist-types/commands/CreateEventCommand.d.ts +3 -3
  22. package/dist-types/commands/DeleteEventCommand.d.ts +3 -3
  23. package/dist-types/commands/DeleteMemoryRecordCommand.d.ts +3 -3
  24. package/dist-types/commands/EvaluateCommand.d.ts +137 -0
  25. package/dist-types/commands/GetAgentCardCommand.d.ts +3 -3
  26. package/dist-types/commands/GetBrowserSessionCommand.d.ts +4 -4
  27. package/dist-types/commands/GetCodeInterpreterSessionCommand.d.ts +4 -4
  28. package/dist-types/commands/GetEventCommand.d.ts +3 -3
  29. package/dist-types/commands/GetMemoryRecordCommand.d.ts +8 -3
  30. package/dist-types/commands/GetResourceApiKeyCommand.d.ts +3 -3
  31. package/dist-types/commands/GetResourceOauth2TokenCommand.d.ts +3 -3
  32. package/dist-types/commands/GetWorkloadAccessTokenCommand.d.ts +3 -3
  33. package/dist-types/commands/GetWorkloadAccessTokenForJWTCommand.d.ts +3 -3
  34. package/dist-types/commands/GetWorkloadAccessTokenForUserIdCommand.d.ts +3 -3
  35. package/dist-types/commands/InvokeAgentRuntimeCommand.d.ts +2 -2
  36. package/dist-types/commands/InvokeCodeInterpreterCommand.d.ts +4 -4
  37. package/dist-types/commands/ListActorsCommand.d.ts +3 -3
  38. package/dist-types/commands/ListBrowserSessionsCommand.d.ts +4 -4
  39. package/dist-types/commands/ListCodeInterpreterSessionsCommand.d.ts +4 -4
  40. package/dist-types/commands/ListEventsCommand.d.ts +3 -3
  41. package/dist-types/commands/ListMemoryExtractionJobsCommand.d.ts +3 -3
  42. package/dist-types/commands/ListMemoryRecordsCommand.d.ts +8 -3
  43. package/dist-types/commands/ListSessionsCommand.d.ts +3 -3
  44. package/dist-types/commands/RetrieveMemoryRecordsCommand.d.ts +21 -3
  45. package/dist-types/commands/StartBrowserSessionCommand.d.ts +4 -4
  46. package/dist-types/commands/StartCodeInterpreterSessionCommand.d.ts +4 -4
  47. package/dist-types/commands/StartMemoryExtractionJobCommand.d.ts +3 -3
  48. package/dist-types/commands/StopBrowserSessionCommand.d.ts +4 -4
  49. package/dist-types/commands/StopCodeInterpreterSessionCommand.d.ts +4 -4
  50. package/dist-types/commands/StopRuntimeSessionCommand.d.ts +3 -3
  51. package/dist-types/commands/UpdateBrowserStreamCommand.d.ts +3 -3
  52. package/dist-types/commands/index.d.ts +1 -0
  53. package/dist-types/endpoint/EndpointParameters.d.ts +13 -1
  54. package/dist-types/endpoint/endpointResolver.d.ts +5 -2
  55. package/dist-types/extensionConfiguration.d.ts +4 -4
  56. package/dist-types/models/BedrockAgentCoreServiceException.d.ts +1 -1
  57. package/dist-types/models/errors.d.ts +13 -1
  58. package/dist-types/models/models_0.d.ts +275 -0
  59. package/dist-types/pagination/Interfaces.d.ts +1 -1
  60. package/dist-types/pagination/ListActorsPaginator.d.ts +1 -1
  61. package/dist-types/pagination/ListEventsPaginator.d.ts +1 -1
  62. package/dist-types/pagination/ListMemoryExtractionJobsPaginator.d.ts +1 -1
  63. package/dist-types/pagination/ListMemoryRecordsPaginator.d.ts +1 -1
  64. package/dist-types/pagination/ListSessionsPaginator.d.ts +1 -1
  65. package/dist-types/pagination/RetrieveMemoryRecordsPaginator.d.ts +1 -1
  66. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  67. package/dist-types/runtimeConfig.d.ts +1 -1
  68. package/dist-types/runtimeConfig.native.d.ts +1 -1
  69. package/dist-types/runtimeConfig.shared.d.ts +1 -1
  70. package/dist-types/runtimeExtensions.d.ts +1 -1
  71. package/dist-types/schemas/schemas_0.d.ts +18 -1
  72. package/dist-types/ts3.4/BedrockAgentCore.d.ts +17 -0
  73. package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +9 -3
  74. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  75. package/dist-types/ts3.4/commands/EvaluateCommand.d.ts +47 -0
  76. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  77. package/dist-types/ts3.4/models/BedrockAgentCoreServiceException.d.ts +1 -1
  78. package/dist-types/ts3.4/models/errors.d.ts +7 -0
  79. package/dist-types/ts3.4/models/models_0.d.ts +96 -0
  80. package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
  81. package/package.json +13 -12
@@ -40,14 +40,18 @@ const _CRTARo = "CompleteResourceTokenAuthResponse";
40
40
  const _CRVT = "CustomRequestValueType";
41
41
  const _CT = "Content-Type";
42
42
  const _Co = "Content";
43
+ const _Con = "Context";
43
44
  const _D = "Document";
44
45
  const _DE = "DeleteEvent";
45
46
  const _DEI = "DeleteEventInput";
46
47
  const _DEO = "DeleteEventOutput";
48
+ const _DIE = "DuplicateIdException";
47
49
  const _DMR = "DeleteMemoryRecord";
48
50
  const _DMRI = "DeleteMemoryRecordInput";
49
51
  const _DMRO = "DeleteMemoryRecordOutput";
50
52
  const _E = "Event";
53
+ const _EE = "EvaluationExplanation";
54
+ const _EI = "EvaluationInput";
51
55
  const _EJ = "ExtractionJob";
52
56
  const _EJFI = "ExtractionJobFilterInput";
53
57
  const _EJM = "ExtractionJobMetadata";
@@ -56,6 +60,12 @@ const _EJMx = "ExtractionJobMessages";
56
60
  const _EL = "EventList";
57
61
  const _EMFE = "EventMetadataFilterExpression";
58
62
  const _EMFL = "EventMetadataFilterList";
63
+ const _ER = "EvaluateRequest";
64
+ const _ERC = "EvaluationResultContent";
65
+ const _ERv = "EvaluateResponse";
66
+ const _ERva = "EvaluationResults";
67
+ const _ET = "EvaluationTarget";
68
+ const _Ev = "Evaluate";
59
69
  const _FI = "FilterInput";
60
70
  const _GAC = "GetAgentCard";
61
71
  const _GACR = "GetAgentCardRequest";
@@ -123,6 +133,8 @@ const _LVS = "LiveViewStream";
123
133
  const _MC = "MemoryContent";
124
134
  const _ML = "MessagesList";
125
135
  const _MM = "MessageMetadata";
136
+ const _MMFE = "MemoryMetadataFilterExpression";
137
+ const _MMFL = "MemoryMetadataFilterList";
126
138
  const _MMe = "MetadataMap";
127
139
  const _MPV = "Mcp-Protocol-Version";
128
140
  const _MR = "MemoryRecord";
@@ -162,6 +174,7 @@ const _SCISRt = "StartCodeInterpreterSessionResponse";
162
174
  const _SCISRto = "StopCodeInterpreterSessionRequest";
163
175
  const _SCISRtop = "StopCodeInterpreterSessionResponse";
164
176
  const _SCISt = "StopCodeInterpreterSession";
177
+ const _SCp = "SpanContext";
165
178
  const _SE = "ServiceException";
166
179
  const _SMEJ = "StartMemoryExtractionJob";
167
180
  const _SMEJI = "StartMemoryExtractionJobInput";
@@ -174,10 +187,12 @@ const _SS = "SensitiveString";
174
187
  const _SSL = "SessionSummaryList";
175
188
  const _SSe = "SessionSummary";
176
189
  const _SU = "StreamUpdate";
190
+ const _Sp = "Spans";
177
191
  const _TA = "ToolArguments";
178
192
  const _TE = "ThrottledException";
179
193
  const _TEh = "ThrottlingException";
180
194
  const _TRSC = "ToolResultStructuredContent";
195
+ const _TU = "TokenUsage";
181
196
  const _UBS = "UpdateBrowserStream";
182
197
  const _UBSR = "UpdateBrowserStreamRequest";
183
198
  const _UBSRp = "UpdateBrowserStreamResponse";
@@ -221,21 +236,29 @@ const _cTo = "contentType";
221
236
  const _co = "content";
222
237
  const _cod = "code";
223
238
  const _com = "command";
224
- const _con = "conversational";
239
+ const _con = "context";
240
+ const _conv = "conversational";
225
241
  const _d = "data";
226
242
  const _dP = "directoryPath";
227
243
  const _de = "description";
228
244
  const _e = "error";
245
+ const _eA = "evaluatorArn";
229
246
  const _eC = "errorCode";
230
247
  const _eCx = "exitCode";
231
248
  const _eI = "eventId";
249
+ const _eIv = "evaluatorId";
250
+ const _eIva = "evaluationInput";
232
251
  const _eJ = "extractionJob";
233
- const _eM = "eventMetadata";
234
- const _eMr = "errorMessage";
252
+ const _eM = "errorMessage";
253
+ const _eMv = "eventMetadata";
254
+ const _eN = "evaluatorName";
255
+ const _eR = "evaluationResults";
235
256
  const _eT = "eventTimestamp";
257
+ const _eTv = "evaluationTarget";
236
258
  const _eTx = "executionTime";
237
259
  const _ev = "event";
238
260
  const _eve = "events";
261
+ const _ex = "explanation";
239
262
  const _f = "filter";
240
263
  const _fA = "forceAuthentication";
241
264
  const _fL = "fieldList";
@@ -252,14 +275,17 @@ const _iP = "includePayloads";
252
275
  const _iPB = "includeParentBranches";
253
276
  const _iSE = "internalServerException";
254
277
  const _iT = "idempotencyToken";
278
+ const _iTn = "inputTokens";
255
279
  const _j = "jobs";
256
280
  const _jI = "jobId";
257
281
  const _jID = "jobID";
258
- const _l = "left";
282
+ const _l = "label";
259
283
  const _lUA = "lastUpdatedAt";
260
284
  const _lVS = "liveViewStream";
261
285
  const _la = "language";
286
+ const _le = "left";
262
287
  const _m = "message";
288
+ const _mF = "metadataFilters";
263
289
  const _mI = "memoryId";
264
290
  const _mIe = "messageIndex";
265
291
  const _mK = "metadataKey";
@@ -281,6 +307,7 @@ const _na = "namespace";
281
307
  const _nam = "namespaces";
282
308
  const _o = "operator";
283
309
  const _oF = "oauth2Flow";
310
+ const _oT = "outputTokens";
284
311
  const _p = "payload";
285
312
  const _pa = "path";
286
313
  const _pat = "paths";
@@ -302,9 +329,12 @@ const _ro = "role";
302
329
  const _s = "streaming";
303
330
  const _sC = "structuredContent";
304
331
  const _sCe = "searchCriteria";
332
+ const _sCp = "spanContext";
305
333
  const _sCt = "statusCode";
306
334
  const _sE = "streamEndpoint";
307
335
  const _sI = "sessionId";
336
+ const _sIp = "spanId";
337
+ const _sIpa = "spanIds";
308
338
  const _sIt = "strategyId";
309
339
  const _sQ = "searchQuery";
310
340
  const _sQEE = "serviceQuotaExceededException";
@@ -313,6 +343,7 @@ const _sRA = "sessionReplayArtifact";
313
343
  const _sS = "streamStatus";
314
344
  const _sSe = "sessionStatus";
315
345
  const _sSes = "sessionSummaries";
346
+ const _sSess = "sessionSpans";
316
347
  const _sTS = "sessionTimeoutSeconds";
317
348
  const _sU = "sessionUri";
318
349
  const _sUt = "streamUpdate";
@@ -332,10 +363,13 @@ const _t = "type";
332
363
  const _tE = "throttlingException";
333
364
  const _tI = "traceId";
334
365
  const _tIa = "taskId";
366
+ const _tIr = "traceIds";
335
367
  const _tK = "topK";
336
368
  const _tP = "traceParent";
337
369
  const _tS = "traceState";
338
370
  const _tSa = "taskStatus";
371
+ const _tT = "totalTokens";
372
+ const _tU = "tokenUsage";
339
373
  const _te = "text";
340
374
  const _ti = "timestamp";
341
375
  const _tr = "traceparent";
@@ -345,6 +379,7 @@ const _uA = "updatedAt";
345
379
  const _uI = "userIdentifier";
346
380
  const _uIs = "userId";
347
381
  const _uT = "userToken";
382
+ const _v = "value";
348
383
  const _vE = "validationException";
349
384
  const _vP = "viewPort";
350
385
  const _w = "width";
@@ -355,38 +390,20 @@ const _xacisi = "x-amzn-code-interpreter-session-id";
355
390
  const n0 = "com.amazonaws.bedrockagentcore";
356
391
  import { TypeRegistry } from "@smithy/core/schema";
357
392
  import { BedrockAgentCoreServiceException as __BedrockAgentCoreServiceException } from "../models/BedrockAgentCoreServiceException";
358
- import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, InvalidInputException as __InvalidInputException, ResourceNotFoundException as __ResourceNotFoundException, RuntimeClientError as __RuntimeClientError, ServiceException as __ServiceException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottledException as __ThrottledException, ThrottlingException as __ThrottlingException, UnauthorizedException as __UnauthorizedException, ValidationException as __ValidationException, } from "../models/errors";
393
+ import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, DuplicateIdException as __DuplicateIdException, InternalServerException as __InternalServerException, InvalidInputException as __InvalidInputException, ResourceNotFoundException as __ResourceNotFoundException, RuntimeClientError as __RuntimeClientError, ServiceException as __ServiceException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottledException as __ThrottledException, ThrottlingException as __ThrottlingException, UnauthorizedException as __UnauthorizedException, ValidationException as __ValidationException, } from "../models/errors";
359
394
  export var AccessTokenType = [0, n0, _ATT, 8, 0];
360
395
  export var ApiKeyType = [0, n0, _AKT, 8, 0];
361
396
  export var AuthorizationUrlType = [0, n0, _AUT, 8, 0];
362
397
  export var Body = [0, n0, _B, 8, 21];
363
398
  export var CustomRequestValueType = [0, n0, _CRVT, 8, 0];
364
399
  export var Document = [0, n0, _D, 8, 15];
365
- export var ResponseStream = [
366
- 0,
367
- n0,
368
- _RS,
369
- {
370
- [_s]: 1,
371
- [_se]: 1,
372
- },
373
- 42,
374
- ];
400
+ export var EvaluationExplanation = [0, n0, _EE, 8, 0];
401
+ export var ResponseStream = [0, n0, _RS, { [_s]: 1, [_se]: 1 }, 42];
375
402
  export var SensitiveString = [0, n0, _SS, 8, 0];
376
403
  export var State = [0, n0, _S, 8, 0];
377
404
  export var UserTokenType = [0, n0, _UTT, 8, 0];
378
405
  export var WorkloadIdentityTokenType = [0, n0, _WITT, 8, 0];
379
- export var AccessDeniedException = [
380
- -3,
381
- n0,
382
- _ADE,
383
- {
384
- [_e]: _c,
385
- [_hE]: 403,
386
- },
387
- [_m],
388
- [0],
389
- ];
406
+ export var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
390
407
  TypeRegistry.for(n0).registerError(AccessDeniedException, __AccessDeniedException);
391
408
  export var ActorSummary = [3, n0, _AS, 0, [_aI], [0]];
392
409
  export var AutomationStream = [3, n0, _ASu, 0, [_sE, _sS], [0, 0]];
@@ -489,17 +506,7 @@ export var CompleteResourceTokenAuthRequest = [
489
506
  [[() => UserIdentifier, 0], 0],
490
507
  ];
491
508
  export var CompleteResourceTokenAuthResponse = [3, n0, _CRTARo, 0, [], []];
492
- export var ConflictException = [
493
- -3,
494
- n0,
495
- _CE,
496
- {
497
- [_e]: _c,
498
- [_hE]: 409,
499
- },
500
- [_m],
501
- [0],
502
- ];
509
+ export var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
503
510
  TypeRegistry.for(n0).registerError(ConflictException, __ConflictException);
504
511
  export var ContentBlock = [
505
512
  3,
@@ -545,6 +552,25 @@ export var DeleteMemoryRecordInput = [
545
552
  ],
546
553
  ];
547
554
  export var DeleteMemoryRecordOutput = [3, n0, _DMRO, 0, [_mRI], [0]];
555
+ export var DuplicateIdException = [-3, n0, _DIE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
556
+ TypeRegistry.for(n0).registerError(DuplicateIdException, __DuplicateIdException);
557
+ export var EvaluateRequest = [
558
+ 3,
559
+ n0,
560
+ _ER,
561
+ 0,
562
+ [_eIv, _eIva, _eTv],
563
+ [[0, 1], [() => EvaluationInput, 0], () => EvaluationTarget],
564
+ ];
565
+ export var EvaluateResponse = [3, n0, _ERv, 0, [_eR], [[() => EvaluationResults, 0]]];
566
+ export var EvaluationResultContent = [
567
+ 3,
568
+ n0,
569
+ _ERC,
570
+ 0,
571
+ [_eA, _eIv, _eN, _ex, _con, _v, _l, _tU, _eM, _eC],
572
+ [0, 0, 0, [() => EvaluationExplanation, 0], () => Context, 1, 0, () => TokenUsage, 0, 0],
573
+ ];
548
574
  export var Event = [
549
575
  3,
550
576
  n0,
@@ -558,7 +584,7 @@ export var EventMetadataFilterExpression = [
558
584
  n0,
559
585
  _EMFE,
560
586
  0,
561
- [_l, _o, _ri],
587
+ [_le, _o, _ri],
562
588
  [() => LeftExpression, 0, () => RightExpression],
563
589
  ];
564
590
  export var ExtractionJob = [3, n0, _EJ, 0, [_jI], [0]];
@@ -576,7 +602,7 @@ export var FilterInput = [
576
602
  n0,
577
603
  _FI,
578
604
  0,
579
- [_b, _eM],
605
+ [_b, _eMv],
580
606
  [() => BranchFilter, () => EventMetadataFilterList],
581
607
  ];
582
608
  export var GetAgentCardRequest = [
@@ -586,20 +612,9 @@ export var GetAgentCardRequest = [
586
612
  0,
587
613
  [_rSI, _aRA, _q],
588
614
  [
589
- [
590
- 0,
591
- {
592
- [_hH]: _XABARSI,
593
- [_iT]: 1,
594
- },
595
- ],
615
+ [0, { [_hH]: _XABARSI, [_iT]: 1 }],
596
616
  [0, 1],
597
- [
598
- 0,
599
- {
600
- [_hQ]: _q,
601
- },
602
- ],
617
+ [0, { [_hQ]: _q }],
603
618
  ],
604
619
  ];
605
620
  export var GetAgentCardResponse = [
@@ -609,12 +624,7 @@ export var GetAgentCardResponse = [
609
624
  0,
610
625
  [_rSI, _aC, _sCt],
611
626
  [
612
- [
613
- 0,
614
- {
615
- [_hH]: _XABARSI,
616
- },
617
- ],
627
+ [0, { [_hH]: _XABARSI }],
618
628
  [15, 16],
619
629
  [1, 32],
620
630
  ],
@@ -627,12 +637,7 @@ export var GetBrowserSessionRequest = [
627
637
  [_bI, _sI],
628
638
  [
629
639
  [0, 1],
630
- [
631
- 0,
632
- {
633
- [_hQ]: _sI,
634
- },
635
- ],
640
+ [0, { [_hQ]: _sI }],
636
641
  ],
637
642
  ];
638
643
  export var GetBrowserSessionResponse = [
@@ -651,12 +656,7 @@ export var GetCodeInterpreterSessionRequest = [
651
656
  [_cII, _sI],
652
657
  [
653
658
  [0, 1],
654
- [
655
- 0,
656
- {
657
- [_hQ]: _sI,
658
- },
659
- ],
659
+ [0, { [_hQ]: _sI }],
660
660
  ],
661
661
  ];
662
662
  export var GetCodeInterpreterSessionResponse = [
@@ -763,29 +763,9 @@ export var GetWorkloadAccessTokenResponse = [
763
763
  [[() => WorkloadIdentityTokenType, 0]],
764
764
  ];
765
765
  export var InputContentBlock = [3, n0, _ICB, 0, [_pa, _te, _bl], [0, 0, [() => Body, 0]]];
766
- export var InternalServerException = [
767
- -3,
768
- n0,
769
- _ISE,
770
- {
771
- [_e]: _ser,
772
- [_hE]: 500,
773
- },
774
- [_m],
775
- [0],
776
- ];
766
+ export var InternalServerException = [-3, n0, _ISE, { [_e]: _ser, [_hE]: 500 }, [_m], [0]];
777
767
  TypeRegistry.for(n0).registerError(InternalServerException, __InternalServerException);
778
- export var InvalidInputException = [
779
- -3,
780
- n0,
781
- _IIE,
782
- {
783
- [_e]: _c,
784
- [_hE]: 400,
785
- },
786
- [_m],
787
- [0],
788
- ];
768
+ export var InvalidInputException = [-3, n0, _IIE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
789
769
  TypeRegistry.for(n0).registerError(InvalidInputException, __InvalidInputException);
790
770
  export var InvokeAgentRuntimeRequest = [
791
771
  3,
@@ -794,80 +774,19 @@ export var InvokeAgentRuntimeRequest = [
794
774
  0,
795
775
  [_cTo, _a, _mSI, _rSI, _mPV, _rUI, _tI, _tP, _tS, _ba, _aRA, _q, _aIc, _p],
796
776
  [
797
- [
798
- 0,
799
- {
800
- [_hH]: _CT,
801
- },
802
- ],
803
- [
804
- 0,
805
- {
806
- [_hH]: _A,
807
- },
808
- ],
809
- [
810
- 0,
811
- {
812
- [_hH]: _MSI,
813
- },
814
- ],
815
- [
816
- 0,
817
- {
818
- [_hH]: _XABARSI,
819
- [_iT]: 1,
820
- },
821
- ],
822
- [
823
- 0,
824
- {
825
- [_hH]: _MPV,
826
- },
827
- ],
828
- [
829
- 0,
830
- {
831
- [_hH]: _XABARUI,
832
- },
833
- ],
834
- [
835
- 0,
836
- {
837
- [_hH]: _XATI,
838
- },
839
- ],
840
- [
841
- 0,
842
- {
843
- [_hH]: _tr,
844
- },
845
- ],
846
- [
847
- 0,
848
- {
849
- [_hH]: _tra,
850
- },
851
- ],
852
- [
853
- 0,
854
- {
855
- [_hH]: _ba,
856
- },
857
- ],
777
+ [0, { [_hH]: _CT }],
778
+ [0, { [_hH]: _A }],
779
+ [0, { [_hH]: _MSI }],
780
+ [0, { [_hH]: _XABARSI, [_iT]: 1 }],
781
+ [0, { [_hH]: _MPV }],
782
+ [0, { [_hH]: _XABARUI }],
783
+ [0, { [_hH]: _XATI }],
784
+ [0, { [_hH]: _tr }],
785
+ [0, { [_hH]: _tra }],
786
+ [0, { [_hH]: _ba }],
858
787
  [0, 1],
859
- [
860
- 0,
861
- {
862
- [_hQ]: _q,
863
- },
864
- ],
865
- [
866
- 0,
867
- {
868
- [_hQ]: _aIc,
869
- },
870
- ],
788
+ [0, { [_hQ]: _q }],
789
+ [0, { [_hQ]: _aIc }],
871
790
  [() => Body, 16],
872
791
  ],
873
792
  ];
@@ -878,54 +797,14 @@ export var InvokeAgentRuntimeResponse = [
878
797
  0,
879
798
  [_rSI, _mSI, _mPV, _tI, _tP, _tS, _ba, _cTo, _res, _sCt],
880
799
  [
881
- [
882
- 0,
883
- {
884
- [_hH]: _XABARSI,
885
- },
886
- ],
887
- [
888
- 0,
889
- {
890
- [_hH]: _MSI,
891
- },
892
- ],
893
- [
894
- 0,
895
- {
896
- [_hH]: _MPV,
897
- },
898
- ],
899
- [
900
- 0,
901
- {
902
- [_hH]: _XATI,
903
- },
904
- ],
905
- [
906
- 0,
907
- {
908
- [_hH]: _tr,
909
- },
910
- ],
911
- [
912
- 0,
913
- {
914
- [_hH]: _tra,
915
- },
916
- ],
917
- [
918
- 0,
919
- {
920
- [_hH]: _ba,
921
- },
922
- ],
923
- [
924
- 0,
925
- {
926
- [_hH]: _CT,
927
- },
928
- ],
800
+ [0, { [_hH]: _XABARSI }],
801
+ [0, { [_hH]: _MSI }],
802
+ [0, { [_hH]: _MPV }],
803
+ [0, { [_hH]: _XATI }],
804
+ [0, { [_hH]: _tr }],
805
+ [0, { [_hH]: _tra }],
806
+ [0, { [_hH]: _ba }],
807
+ [0, { [_hH]: _CT }],
929
808
  [() => ResponseStream, 16],
930
809
  [1, 32],
931
810
  ],
@@ -936,29 +815,7 @@ export var InvokeCodeInterpreterRequest = [
936
815
  _ICIR,
937
816
  0,
938
817
  [_cII, _sI, _tI, _tP, _n, _ar],
939
- [
940
- [0, 1],
941
- [
942
- 0,
943
- {
944
- [_hH]: _xacisi,
945
- },
946
- ],
947
- [
948
- 0,
949
- {
950
- [_hH]: _XATI,
951
- },
952
- ],
953
- [
954
- 0,
955
- {
956
- [_hH]: _tr,
957
- },
958
- ],
959
- 0,
960
- [() => ToolArguments, 0],
961
- ],
818
+ [[0, 1], [0, { [_hH]: _xacisi }], [0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], 0, [() => ToolArguments, 0]],
962
819
  ];
963
820
  export var InvokeCodeInterpreterResponse = [
964
821
  3,
@@ -967,12 +824,7 @@ export var InvokeCodeInterpreterResponse = [
967
824
  0,
968
825
  [_sI, _stre],
969
826
  [
970
- [
971
- 0,
972
- {
973
- [_hH]: _xacisi,
974
- },
975
- ],
827
+ [0, { [_hH]: _xacisi }],
976
828
  [() => CodeInterpreterStreamOutput, 16],
977
829
  ],
978
830
  ];
@@ -1054,13 +906,21 @@ export var ListMemoryRecordsOutput = [
1054
906
  export var ListSessionsInput = [3, n0, _LSI, 0, [_mI, _aI, _mRa, _nT], [[0, 1], [0, 1], 1, 0]];
1055
907
  export var ListSessionsOutput = [3, n0, _LSO, 0, [_sSes, _nT], [() => SessionSummaryList, 0]];
1056
908
  export var LiveViewStream = [3, n0, _LVS, 0, [_sE], [0]];
909
+ export var MemoryMetadataFilterExpression = [
910
+ 3,
911
+ n0,
912
+ _MMFE,
913
+ 0,
914
+ [_le, _o, _ri],
915
+ [() => LeftExpression, 0, () => RightExpression],
916
+ ];
1057
917
  export var MemoryRecord = [
1058
918
  3,
1059
919
  n0,
1060
920
  _MR,
1061
921
  0,
1062
- [_mRI, _co, _mSIe, _nam, _cA],
1063
- [0, [() => MemoryContent, 0], 0, 64 | 0, 4],
922
+ [_mRI, _co, _mSIe, _nam, _cA, _me],
923
+ [0, [() => MemoryContent, 0], 0, 64 | 0, 4, () => MetadataMap],
1064
924
  ];
1065
925
  export var MemoryRecordCreateInput = [
1066
926
  3,
@@ -1071,14 +931,14 @@ export var MemoryRecordCreateInput = [
1071
931
  [0, 64 | 0, [() => MemoryContent, 0], 4, 0],
1072
932
  ];
1073
933
  export var MemoryRecordDeleteInput = [3, n0, _MRDI, 0, [_mRI], [0]];
1074
- export var MemoryRecordOutput = [3, n0, _MRO, 0, [_mRI, _st, _rI, _eC, _eMr], [0, 0, 0, 1, 0]];
934
+ export var MemoryRecordOutput = [3, n0, _MRO, 0, [_mRI, _st, _rI, _eC, _eM], [0, 0, 0, 1, 0]];
1075
935
  export var MemoryRecordSummary = [
1076
936
  3,
1077
937
  n0,
1078
938
  _MRS,
1079
939
  0,
1080
- [_mRI, _co, _mSIe, _nam, _cA, _sco],
1081
- [0, [() => MemoryContent, 0], 0, 64 | 0, 4, 1],
940
+ [_mRI, _co, _mSIe, _nam, _cA, _sco, _me],
941
+ [0, [() => MemoryContent, 0], 0, 64 | 0, 4, 1, () => MetadataMap],
1082
942
  ];
1083
943
  export var MemoryRecordUpdateInput = [
1084
944
  3,
@@ -1090,17 +950,7 @@ export var MemoryRecordUpdateInput = [
1090
950
  ];
1091
951
  export var MessageMetadata = [3, n0, _MM, 0, [_eI, _mIe], [0, 1]];
1092
952
  export var ResourceContent = [3, n0, _RC, 0, [_t, _u, _mT, _te, _bl], [0, 0, 0, 0, 21]];
1093
- export var ResourceNotFoundException = [
1094
- -3,
1095
- n0,
1096
- _RNFE,
1097
- {
1098
- [_e]: _c,
1099
- [_hE]: 404,
1100
- },
1101
- [_m],
1102
- [0],
1103
- ];
953
+ export var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
1104
954
  TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException);
1105
955
  export var RetrieveMemoryRecordsInput = [
1106
956
  3,
@@ -1118,76 +968,29 @@ export var RetrieveMemoryRecordsOutput = [
1118
968
  [_mRS, _nT],
1119
969
  [[() => MemoryRecordSummaryList, 0], 0],
1120
970
  ];
1121
- export var RuntimeClientError = [
1122
- -3,
1123
- n0,
1124
- _RCE,
1125
- {
1126
- [_e]: _c,
1127
- [_hE]: 424,
1128
- },
1129
- [_m],
1130
- [0],
1131
- ];
971
+ export var RuntimeClientError = [-3, n0, _RCE, { [_e]: _c, [_hE]: 424 }, [_m], [0]];
1132
972
  TypeRegistry.for(n0).registerError(RuntimeClientError, __RuntimeClientError);
1133
973
  export var SearchCriteria = [
1134
974
  3,
1135
975
  n0,
1136
976
  _SC,
1137
977
  0,
1138
- [_sQ, _mSIe, _tK],
1139
- [[() => SensitiveString, 0], 0, 1],
1140
- ];
1141
- export var ServiceException = [
1142
- -3,
1143
- n0,
1144
- _SE,
1145
- {
1146
- [_e]: _ser,
1147
- [_hE]: 500,
1148
- },
1149
- [_m],
1150
- [0],
978
+ [_sQ, _mSIe, _tK, _mF],
979
+ [[() => SensitiveString, 0], 0, 1, () => MemoryMetadataFilterList],
1151
980
  ];
981
+ export var ServiceException = [-3, n0, _SE, { [_e]: _ser, [_hE]: 500 }, [_m], [0]];
1152
982
  TypeRegistry.for(n0).registerError(ServiceException, __ServiceException);
1153
- export var ServiceQuotaExceededException = [
1154
- -3,
1155
- n0,
1156
- _SQEE,
1157
- {
1158
- [_e]: _c,
1159
- [_hE]: 402,
1160
- },
1161
- [_m],
1162
- [0],
1163
- ];
983
+ export var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
1164
984
  TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, __ServiceQuotaExceededException);
1165
985
  export var SessionSummary = [3, n0, _SSe, 0, [_sI, _aI, _cA], [0, 0, 4]];
986
+ export var SpanContext = [3, n0, _SCp, 0, [_sI, _tI, _sIp], [0, 0, 0]];
1166
987
  export var StartBrowserSessionRequest = [
1167
988
  3,
1168
989
  n0,
1169
990
  _SBSR,
1170
991
  0,
1171
992
  [_tI, _tP, _bI, _n, _sTS, _vP, _cT],
1172
- [
1173
- [
1174
- 0,
1175
- {
1176
- [_hH]: _XATI,
1177
- },
1178
- ],
1179
- [
1180
- 0,
1181
- {
1182
- [_hH]: _tr,
1183
- },
1184
- ],
1185
- [0, 1],
1186
- 0,
1187
- 1,
1188
- () => ViewPort,
1189
- [0, 4],
1190
- ],
993
+ [[0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], [0, 1], 0, 1, () => ViewPort, [0, 4]],
1191
994
  ];
1192
995
  export var StartBrowserSessionResponse = [
1193
996
  3,
@@ -1203,24 +1006,7 @@ export var StartCodeInterpreterSessionRequest = [
1203
1006
  _SCISR,
1204
1007
  0,
1205
1008
  [_tI, _tP, _cII, _n, _sTS, _cT],
1206
- [
1207
- [
1208
- 0,
1209
- {
1210
- [_hH]: _XATI,
1211
- },
1212
- ],
1213
- [
1214
- 0,
1215
- {
1216
- [_hH]: _tr,
1217
- },
1218
- ],
1219
- [0, 1],
1220
- 0,
1221
- 1,
1222
- [0, 4],
1223
- ],
1009
+ [[0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], [0, 1], 0, 1, [0, 4]],
1224
1010
  ];
1225
1011
  export var StartCodeInterpreterSessionResponse = [
1226
1012
  3,
@@ -1246,25 +1032,10 @@ export var StopBrowserSessionRequest = [
1246
1032
  0,
1247
1033
  [_tI, _tP, _bI, _sI, _cT],
1248
1034
  [
1249
- [
1250
- 0,
1251
- {
1252
- [_hH]: _XATI,
1253
- },
1254
- ],
1255
- [
1256
- 0,
1257
- {
1258
- [_hH]: _tr,
1259
- },
1260
- ],
1035
+ [0, { [_hH]: _XATI }],
1036
+ [0, { [_hH]: _tr }],
1261
1037
  [0, 1],
1262
- [
1263
- 0,
1264
- {
1265
- [_hQ]: _sI,
1266
- },
1267
- ],
1038
+ [0, { [_hQ]: _sI }],
1268
1039
  [0, 4],
1269
1040
  ],
1270
1041
  ];
@@ -1276,25 +1047,10 @@ export var StopCodeInterpreterSessionRequest = [
1276
1047
  0,
1277
1048
  [_tI, _tP, _cII, _sI, _cT],
1278
1049
  [
1279
- [
1280
- 0,
1281
- {
1282
- [_hH]: _XATI,
1283
- },
1284
- ],
1285
- [
1286
- 0,
1287
- {
1288
- [_hH]: _tr,
1289
- },
1290
- ],
1050
+ [0, { [_hH]: _XATI }],
1051
+ [0, { [_hH]: _tr }],
1291
1052
  [0, 1],
1292
- [
1293
- 0,
1294
- {
1295
- [_hQ]: _sI,
1296
- },
1297
- ],
1053
+ [0, { [_hQ]: _sI }],
1298
1054
  [0, 4],
1299
1055
  ],
1300
1056
  ];
@@ -1313,19 +1069,9 @@ export var StopRuntimeSessionRequest = [
1313
1069
  0,
1314
1070
  [_rSI, _aRA, _q, _cT],
1315
1071
  [
1316
- [
1317
- 0,
1318
- {
1319
- [_hH]: _XABARSI,
1320
- },
1321
- ],
1072
+ [0, { [_hH]: _XABARSI }],
1322
1073
  [0, 1],
1323
- [
1324
- 0,
1325
- {
1326
- [_hQ]: _q,
1327
- },
1328
- ],
1074
+ [0, { [_hQ]: _q }],
1329
1075
  [0, 4],
1330
1076
  ],
1331
1077
  ];
@@ -1336,39 +1082,15 @@ export var StopRuntimeSessionResponse = [
1336
1082
  0,
1337
1083
  [_rSI, _sCt],
1338
1084
  [
1339
- [
1340
- 0,
1341
- {
1342
- [_hH]: _XABARSI,
1343
- },
1344
- ],
1085
+ [0, { [_hH]: _XABARSI }],
1345
1086
  [1, 32],
1346
1087
  ],
1347
1088
  ];
1348
- export var ThrottledException = [
1349
- -3,
1350
- n0,
1351
- _TE,
1352
- {
1353
- [_e]: _c,
1354
- [_hE]: 429,
1355
- },
1356
- [_m],
1357
- [0],
1358
- ];
1089
+ export var ThrottledException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1359
1090
  TypeRegistry.for(n0).registerError(ThrottledException, __ThrottledException);
1360
- export var ThrottlingException = [
1361
- -3,
1362
- n0,
1363
- _TEh,
1364
- {
1365
- [_e]: _c,
1366
- [_hE]: 429,
1367
- },
1368
- [_m],
1369
- [0],
1370
- ];
1091
+ export var ThrottlingException = [-3, n0, _TEh, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1371
1092
  TypeRegistry.for(n0).registerError(ThrottlingException, __ThrottlingException);
1093
+ export var TokenUsage = [3, n0, _TU, 0, [_iTn, _oT, _tT], [1, 1, 1]];
1372
1094
  export var ToolArguments = [
1373
1095
  3,
1374
1096
  n0,
@@ -1385,17 +1107,7 @@ export var ToolResultStructuredContent = [
1385
1107
  [_tIa, _tSa, _std, _stde, _eCx, _eTx],
1386
1108
  [0, 0, 0, 0, 1, 1],
1387
1109
  ];
1388
- export var UnauthorizedException = [
1389
- -3,
1390
- n0,
1391
- _UE,
1392
- {
1393
- [_e]: _c,
1394
- [_hE]: 401,
1395
- },
1396
- [_m],
1397
- [0],
1398
- ];
1110
+ export var UnauthorizedException = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_m], [0]];
1399
1111
  TypeRegistry.for(n0).registerError(UnauthorizedException, __UnauthorizedException);
1400
1112
  export var UpdateBrowserStreamRequest = [
1401
1113
  3,
@@ -1403,17 +1115,7 @@ export var UpdateBrowserStreamRequest = [
1403
1115
  _UBSR,
1404
1116
  0,
1405
1117
  [_bI, _sI, _sUt, _cT],
1406
- [
1407
- [0, 1],
1408
- [
1409
- 0,
1410
- {
1411
- [_hQ]: _sI,
1412
- },
1413
- ],
1414
- () => StreamUpdate,
1415
- [0, 4],
1416
- ],
1118
+ [[0, 1], [0, { [_hQ]: _sI }], () => StreamUpdate, [0, 4]],
1417
1119
  ];
1418
1120
  export var UpdateBrowserStreamResponse = [
1419
1121
  3,
@@ -1427,10 +1129,7 @@ export var ValidationException = [
1427
1129
  -3,
1428
1130
  n0,
1429
1131
  _VE,
1430
- {
1431
- [_e]: _c,
1432
- [_hE]: 400,
1433
- },
1132
+ { [_e]: _c, [_hE]: 400 },
1434
1133
  [_m, _rea, _fL],
1435
1134
  [0, 0, () => ValidationExceptionFieldList],
1436
1135
  ];
@@ -1451,10 +1150,12 @@ export var ActorSummaryList = [1, n0, _ASL, 0, () => ActorSummary];
1451
1150
  export var BrowserSessionSummaries = [1, n0, _BSSro, 0, () => BrowserSessionSummary];
1452
1151
  export var CodeInterpreterSessionSummaries = [1, n0, _CISSo, 0, () => CodeInterpreterSessionSummary];
1453
1152
  export var ContentBlockList = [1, n0, _CBL, 0, () => ContentBlock];
1153
+ export var EvaluationResults = [1, n0, _ERva, 0, [() => EvaluationResultContent, 0]];
1454
1154
  export var EventList = [1, n0, _EL, 0, [() => Event, 0]];
1455
1155
  export var EventMetadataFilterList = [1, n0, _EMFL, 0, () => EventMetadataFilterExpression];
1456
1156
  export var ExtractionJobMetadataList = [1, n0, _EJML, 0, () => ExtractionJobMetadata];
1457
1157
  export var InputContentBlockList = [1, n0, _ICBL, 0, [() => InputContentBlock, 0]];
1158
+ export var MemoryMetadataFilterList = [1, n0, _MMFL, 0, () => MemoryMetadataFilterExpression];
1458
1159
  export var MemoryRecordsCreateInputList = [1, n0, _MRCIL, 0, [() => MemoryRecordCreateInput, 0]];
1459
1160
  export var MemoryRecordsDeleteInputList = [1, n0, _MRDIL, 0, () => MemoryRecordDeleteInput];
1460
1161
  export var MemoryRecordsOutputList = [1, n0, _MROL, 0, () => MemoryRecordOutput];
@@ -1465,7 +1166,10 @@ export var NamespacesList = 64 | 0;
1465
1166
  export var PayloadTypeList = [1, n0, _PTL, 0, [() => PayloadType, 0]];
1466
1167
  export var ScopesListType = 64 | 0;
1467
1168
  export var SessionSummaryList = [1, n0, _SSL, 0, () => SessionSummary];
1169
+ export var SpanIds = 64 | 0;
1170
+ export var Spans = [1, n0, _Sp, 8, 15];
1468
1171
  export var StringList = 64 | 0;
1172
+ export var TraceIds = 64 | 0;
1469
1173
  export var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
1470
1174
  export var CustomRequestParametersType = [2, n0, _CRPT, 0, [0, 0], [() => CustomRequestValueType, 0]];
1471
1175
  export var MetadataMap = [2, n0, _MMe, 0, 0, () => MetadataValue];
@@ -1473,9 +1177,7 @@ export var CodeInterpreterStreamOutput = [
1473
1177
  3,
1474
1178
  n0,
1475
1179
  _CISO,
1476
- {
1477
- [_s]: 1,
1478
- },
1180
+ { [_s]: 1 },
1479
1181
  [_resu, _aDE, _cE, _iSE, _rNFE, _sQEE, _tE, _vE],
1480
1182
  [
1481
1183
  () => CodeInterpreterResult,
@@ -1489,6 +1191,9 @@ export var CodeInterpreterStreamOutput = [
1489
1191
  ],
1490
1192
  ];
1491
1193
  export var Content = [3, n0, _Co, 0, [_te], [[() => SensitiveString, 0]]];
1194
+ export var Context = [3, n0, _Con, 0, [_sCp], [() => SpanContext]];
1195
+ export var EvaluationInput = [3, n0, _EI, 0, [_sSess], [[() => Spans, 0]]];
1196
+ export var EvaluationTarget = [3, n0, _ET, 0, [_sIpa, _tIr], [64 | 0, 64 | 0]];
1492
1197
  export var ExtractionJobMessages = [3, n0, _EJMx, 0, [_mL], [() => MessagesList]];
1493
1198
  export var LeftExpression = [3, n0, _LE, 0, [_mK], [0]];
1494
1199
  export var MemoryContent = [3, n0, _MC, 0, [_te], [[() => SensitiveString, 0]]];
@@ -1498,7 +1203,7 @@ export var PayloadType = [
1498
1203
  n0,
1499
1204
  _PT,
1500
1205
  0,
1501
- [_con, _bl],
1206
+ [_conv, _bl],
1502
1207
  [
1503
1208
  [() => Conversational, 0],
1504
1209
  [() => Document, 0],
@@ -1511,9 +1216,7 @@ export var BatchCreateMemoryRecords = [
1511
1216
  9,
1512
1217
  n0,
1513
1218
  _BCMR,
1514
- {
1515
- [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchCreate", 201],
1516
- },
1219
+ { [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchCreate", 201] },
1517
1220
  () => BatchCreateMemoryRecordsInput,
1518
1221
  () => BatchCreateMemoryRecordsOutput,
1519
1222
  ];
@@ -1521,9 +1224,7 @@ export var BatchDeleteMemoryRecords = [
1521
1224
  9,
1522
1225
  n0,
1523
1226
  _BDMR,
1524
- {
1525
- [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchDelete", 200],
1526
- },
1227
+ { [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchDelete", 200] },
1527
1228
  () => BatchDeleteMemoryRecordsInput,
1528
1229
  () => BatchDeleteMemoryRecordsOutput,
1529
1230
  ];
@@ -1531,9 +1232,7 @@ export var BatchUpdateMemoryRecords = [
1531
1232
  9,
1532
1233
  n0,
1533
1234
  _BUMR,
1534
- {
1535
- [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchUpdate", 200],
1536
- },
1235
+ { [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchUpdate", 200] },
1537
1236
  () => BatchUpdateMemoryRecordsInput,
1538
1237
  () => BatchUpdateMemoryRecordsOutput,
1539
1238
  ];
@@ -1541,9 +1240,7 @@ export var CompleteResourceTokenAuth = [
1541
1240
  9,
1542
1241
  n0,
1543
1242
  _CRTA,
1544
- {
1545
- [_ht]: ["POST", "/identities/CompleteResourceTokenAuth", 200],
1546
- },
1243
+ { [_ht]: ["POST", "/identities/CompleteResourceTokenAuth", 200] },
1547
1244
  () => CompleteResourceTokenAuthRequest,
1548
1245
  () => CompleteResourceTokenAuthResponse,
1549
1246
  ];
@@ -1551,9 +1248,7 @@ export var CreateEvent = [
1551
1248
  9,
1552
1249
  n0,
1553
1250
  _CEr,
1554
- {
1555
- [_ht]: ["POST", "/memories/{memoryId}/events", 201],
1556
- },
1251
+ { [_ht]: ["POST", "/memories/{memoryId}/events", 201] },
1557
1252
  () => CreateEventInput,
1558
1253
  () => CreateEventOutput,
1559
1254
  ];
@@ -1561,9 +1256,7 @@ export var DeleteEvent = [
1561
1256
  9,
1562
1257
  n0,
1563
1258
  _DE,
1564
- {
1565
- [_ht]: ["DELETE", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200],
1566
- },
1259
+ { [_ht]: ["DELETE", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200] },
1567
1260
  () => DeleteEventInput,
1568
1261
  () => DeleteEventOutput,
1569
1262
  ];
@@ -1571,19 +1264,23 @@ export var DeleteMemoryRecord = [
1571
1264
  9,
1572
1265
  n0,
1573
1266
  _DMR,
1574
- {
1575
- [_ht]: ["DELETE", "/memories/{memoryId}/memoryRecords/{memoryRecordId}", 200],
1576
- },
1267
+ { [_ht]: ["DELETE", "/memories/{memoryId}/memoryRecords/{memoryRecordId}", 200] },
1577
1268
  () => DeleteMemoryRecordInput,
1578
1269
  () => DeleteMemoryRecordOutput,
1579
1270
  ];
1271
+ export var Evaluate = [
1272
+ 9,
1273
+ n0,
1274
+ _Ev,
1275
+ { [_ht]: ["POST", "/evaluations/evaluate/{evaluatorId}", 200] },
1276
+ () => EvaluateRequest,
1277
+ () => EvaluateResponse,
1278
+ ];
1580
1279
  export var GetAgentCard = [
1581
1280
  9,
1582
1281
  n0,
1583
1282
  _GAC,
1584
- {
1585
- [_ht]: ["GET", "/runtimes/{agentRuntimeArn}/invocations/.well-known/agent-card.json", 200],
1586
- },
1283
+ { [_ht]: ["GET", "/runtimes/{agentRuntimeArn}/invocations/.well-known/agent-card.json", 200] },
1587
1284
  () => GetAgentCardRequest,
1588
1285
  () => GetAgentCardResponse,
1589
1286
  ];
@@ -1591,9 +1288,7 @@ export var GetBrowserSession = [
1591
1288
  9,
1592
1289
  n0,
1593
1290
  _GBS,
1594
- {
1595
- [_ht]: ["GET", "/browsers/{browserIdentifier}/sessions/get", 200],
1596
- },
1291
+ { [_ht]: ["GET", "/browsers/{browserIdentifier}/sessions/get", 200] },
1597
1292
  () => GetBrowserSessionRequest,
1598
1293
  () => GetBrowserSessionResponse,
1599
1294
  ];
@@ -1601,9 +1296,7 @@ export var GetCodeInterpreterSession = [
1601
1296
  9,
1602
1297
  n0,
1603
1298
  _GCIS,
1604
- {
1605
- [_ht]: ["GET", "/code-interpreters/{codeInterpreterIdentifier}/sessions/get", 200],
1606
- },
1299
+ { [_ht]: ["GET", "/code-interpreters/{codeInterpreterIdentifier}/sessions/get", 200] },
1607
1300
  () => GetCodeInterpreterSessionRequest,
1608
1301
  () => GetCodeInterpreterSessionResponse,
1609
1302
  ];
@@ -1611,9 +1304,7 @@ export var GetEvent = [
1611
1304
  9,
1612
1305
  n0,
1613
1306
  _GE,
1614
- {
1615
- [_ht]: ["GET", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200],
1616
- },
1307
+ { [_ht]: ["GET", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200] },
1617
1308
  () => GetEventInput,
1618
1309
  () => GetEventOutput,
1619
1310
  ];
@@ -1621,9 +1312,7 @@ export var GetMemoryRecord = [
1621
1312
  9,
1622
1313
  n0,
1623
1314
  _GMR,
1624
- {
1625
- [_ht]: ["GET", "/memories/{memoryId}/memoryRecord/{memoryRecordId}", 200],
1626
- },
1315
+ { [_ht]: ["GET", "/memories/{memoryId}/memoryRecord/{memoryRecordId}", 200] },
1627
1316
  () => GetMemoryRecordInput,
1628
1317
  () => GetMemoryRecordOutput,
1629
1318
  ];
@@ -1631,9 +1320,7 @@ export var GetResourceApiKey = [
1631
1320
  9,
1632
1321
  n0,
1633
1322
  _GRAK,
1634
- {
1635
- [_ht]: ["POST", "/identities/api-key", 200],
1636
- },
1323
+ { [_ht]: ["POST", "/identities/api-key", 200] },
1637
1324
  () => GetResourceApiKeyRequest,
1638
1325
  () => GetResourceApiKeyResponse,
1639
1326
  ];
@@ -1641,9 +1328,7 @@ export var GetResourceOauth2Token = [
1641
1328
  9,
1642
1329
  n0,
1643
1330
  _GROT,
1644
- {
1645
- [_ht]: ["POST", "/identities/oauth2/token", 200],
1646
- },
1331
+ { [_ht]: ["POST", "/identities/oauth2/token", 200] },
1647
1332
  () => GetResourceOauth2TokenRequest,
1648
1333
  () => GetResourceOauth2TokenResponse,
1649
1334
  ];
@@ -1651,9 +1336,7 @@ export var GetWorkloadAccessToken = [
1651
1336
  9,
1652
1337
  n0,
1653
1338
  _GWAT,
1654
- {
1655
- [_ht]: ["POST", "/identities/GetWorkloadAccessToken", 200],
1656
- },
1339
+ { [_ht]: ["POST", "/identities/GetWorkloadAccessToken", 200] },
1657
1340
  () => GetWorkloadAccessTokenRequest,
1658
1341
  () => GetWorkloadAccessTokenResponse,
1659
1342
  ];
@@ -1661,9 +1344,7 @@ export var GetWorkloadAccessTokenForJWT = [
1661
1344
  9,
1662
1345
  n0,
1663
1346
  _GWATFJWT,
1664
- {
1665
- [_ht]: ["POST", "/identities/GetWorkloadAccessTokenForJWT", 200],
1666
- },
1347
+ { [_ht]: ["POST", "/identities/GetWorkloadAccessTokenForJWT", 200] },
1667
1348
  () => GetWorkloadAccessTokenForJWTRequest,
1668
1349
  () => GetWorkloadAccessTokenForJWTResponse,
1669
1350
  ];
@@ -1671,9 +1352,7 @@ export var GetWorkloadAccessTokenForUserId = [
1671
1352
  9,
1672
1353
  n0,
1673
1354
  _GWATFUI,
1674
- {
1675
- [_ht]: ["POST", "/identities/GetWorkloadAccessTokenForUserId", 200],
1676
- },
1355
+ { [_ht]: ["POST", "/identities/GetWorkloadAccessTokenForUserId", 200] },
1677
1356
  () => GetWorkloadAccessTokenForUserIdRequest,
1678
1357
  () => GetWorkloadAccessTokenForUserIdResponse,
1679
1358
  ];
@@ -1681,9 +1360,7 @@ export var InvokeAgentRuntime = [
1681
1360
  9,
1682
1361
  n0,
1683
1362
  _IAR,
1684
- {
1685
- [_ht]: ["POST", "/runtimes/{agentRuntimeArn}/invocations", 200],
1686
- },
1363
+ { [_ht]: ["POST", "/runtimes/{agentRuntimeArn}/invocations", 200] },
1687
1364
  () => InvokeAgentRuntimeRequest,
1688
1365
  () => InvokeAgentRuntimeResponse,
1689
1366
  ];
@@ -1691,9 +1368,7 @@ export var InvokeCodeInterpreter = [
1691
1368
  9,
1692
1369
  n0,
1693
1370
  _ICI,
1694
- {
1695
- [_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/tools/invoke", 200],
1696
- },
1371
+ { [_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/tools/invoke", 200] },
1697
1372
  () => InvokeCodeInterpreterRequest,
1698
1373
  () => InvokeCodeInterpreterResponse,
1699
1374
  ];
@@ -1701,9 +1376,7 @@ export var ListActors = [
1701
1376
  9,
1702
1377
  n0,
1703
1378
  _LA,
1704
- {
1705
- [_ht]: ["POST", "/memories/{memoryId}/actors", 200],
1706
- },
1379
+ { [_ht]: ["POST", "/memories/{memoryId}/actors", 200] },
1707
1380
  () => ListActorsInput,
1708
1381
  () => ListActorsOutput,
1709
1382
  ];
@@ -1711,9 +1384,7 @@ export var ListBrowserSessions = [
1711
1384
  9,
1712
1385
  n0,
1713
1386
  _LBS,
1714
- {
1715
- [_ht]: ["POST", "/browsers/{browserIdentifier}/sessions/list", 200],
1716
- },
1387
+ { [_ht]: ["POST", "/browsers/{browserIdentifier}/sessions/list", 200] },
1717
1388
  () => ListBrowserSessionsRequest,
1718
1389
  () => ListBrowserSessionsResponse,
1719
1390
  ];
@@ -1721,9 +1392,7 @@ export var ListCodeInterpreterSessions = [
1721
1392
  9,
1722
1393
  n0,
1723
1394
  _LCIS,
1724
- {
1725
- [_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/sessions/list", 200],
1726
- },
1395
+ { [_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/sessions/list", 200] },
1727
1396
  () => ListCodeInterpreterSessionsRequest,
1728
1397
  () => ListCodeInterpreterSessionsResponse,
1729
1398
  ];
@@ -1731,9 +1400,7 @@ export var ListEvents = [
1731
1400
  9,
1732
1401
  n0,
1733
1402
  _LEi,
1734
- {
1735
- [_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}", 200],
1736
- },
1403
+ { [_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}", 200] },
1737
1404
  () => ListEventsInput,
1738
1405
  () => ListEventsOutput,
1739
1406
  ];
@@ -1741,9 +1408,7 @@ export var ListMemoryExtractionJobs = [
1741
1408
  9,
1742
1409
  n0,
1743
1410
  _LMEJ,
1744
- {
1745
- [_ht]: ["POST", "/memories/{memoryId}/extractionJobs", 200],
1746
- },
1411
+ { [_ht]: ["POST", "/memories/{memoryId}/extractionJobs", 200] },
1747
1412
  () => ListMemoryExtractionJobsInput,
1748
1413
  () => ListMemoryExtractionJobsOutput,
1749
1414
  ];
@@ -1751,9 +1416,7 @@ export var ListMemoryRecords = [
1751
1416
  9,
1752
1417
  n0,
1753
1418
  _LMR,
1754
- {
1755
- [_ht]: ["POST", "/memories/{memoryId}/memoryRecords", 200],
1756
- },
1419
+ { [_ht]: ["POST", "/memories/{memoryId}/memoryRecords", 200] },
1757
1420
  () => ListMemoryRecordsInput,
1758
1421
  () => ListMemoryRecordsOutput,
1759
1422
  ];
@@ -1761,9 +1424,7 @@ export var ListSessions = [
1761
1424
  9,
1762
1425
  n0,
1763
1426
  _LS,
1764
- {
1765
- [_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions", 200],
1766
- },
1427
+ { [_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions", 200] },
1767
1428
  () => ListSessionsInput,
1768
1429
  () => ListSessionsOutput,
1769
1430
  ];
@@ -1771,9 +1432,7 @@ export var RetrieveMemoryRecords = [
1771
1432
  9,
1772
1433
  n0,
1773
1434
  _RMR,
1774
- {
1775
- [_ht]: ["POST", "/memories/{memoryId}/retrieve", 200],
1776
- },
1435
+ { [_ht]: ["POST", "/memories/{memoryId}/retrieve", 200] },
1777
1436
  () => RetrieveMemoryRecordsInput,
1778
1437
  () => RetrieveMemoryRecordsOutput,
1779
1438
  ];
@@ -1781,9 +1440,7 @@ export var StartBrowserSession = [
1781
1440
  9,
1782
1441
  n0,
1783
1442
  _SBS,
1784
- {
1785
- [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/start", 200],
1786
- },
1443
+ { [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/start", 200] },
1787
1444
  () => StartBrowserSessionRequest,
1788
1445
  () => StartBrowserSessionResponse,
1789
1446
  ];
@@ -1791,9 +1448,7 @@ export var StartCodeInterpreterSession = [
1791
1448
  9,
1792
1449
  n0,
1793
1450
  _SCIS,
1794
- {
1795
- [_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/start", 200],
1796
- },
1451
+ { [_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/start", 200] },
1797
1452
  () => StartCodeInterpreterSessionRequest,
1798
1453
  () => StartCodeInterpreterSessionResponse,
1799
1454
  ];
@@ -1801,9 +1456,7 @@ export var StartMemoryExtractionJob = [
1801
1456
  9,
1802
1457
  n0,
1803
1458
  _SMEJ,
1804
- {
1805
- [_ht]: ["POST", "/memories/{memoryId}/extractionJobs/start", 200],
1806
- },
1459
+ { [_ht]: ["POST", "/memories/{memoryId}/extractionJobs/start", 200] },
1807
1460
  () => StartMemoryExtractionJobInput,
1808
1461
  () => StartMemoryExtractionJobOutput,
1809
1462
  ];
@@ -1811,9 +1464,7 @@ export var StopBrowserSession = [
1811
1464
  9,
1812
1465
  n0,
1813
1466
  _SBSt,
1814
- {
1815
- [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/stop", 200],
1816
- },
1467
+ { [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/stop", 200] },
1817
1468
  () => StopBrowserSessionRequest,
1818
1469
  () => StopBrowserSessionResponse,
1819
1470
  ];
@@ -1821,9 +1472,7 @@ export var StopCodeInterpreterSession = [
1821
1472
  9,
1822
1473
  n0,
1823
1474
  _SCISt,
1824
- {
1825
- [_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/stop", 200],
1826
- },
1475
+ { [_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/stop", 200] },
1827
1476
  () => StopCodeInterpreterSessionRequest,
1828
1477
  () => StopCodeInterpreterSessionResponse,
1829
1478
  ];
@@ -1831,9 +1480,7 @@ export var StopRuntimeSession = [
1831
1480
  9,
1832
1481
  n0,
1833
1482
  _SRS,
1834
- {
1835
- [_ht]: ["POST", "/runtimes/{agentRuntimeArn}/stopruntimesession", 200],
1836
- },
1483
+ { [_ht]: ["POST", "/runtimes/{agentRuntimeArn}/stopruntimesession", 200] },
1837
1484
  () => StopRuntimeSessionRequest,
1838
1485
  () => StopRuntimeSessionResponse,
1839
1486
  ];
@@ -1841,9 +1488,7 @@ export var UpdateBrowserStream = [
1841
1488
  9,
1842
1489
  n0,
1843
1490
  _UBS,
1844
- {
1845
- [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/streams/update", 200],
1846
- },
1491
+ { [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/streams/update", 200] },
1847
1492
  () => UpdateBrowserStreamRequest,
1848
1493
  () => UpdateBrowserStreamResponse,
1849
1494
  ];