@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.
Files changed (88) hide show
  1. package/README.md +105 -7
  2. package/dist-cjs/index.js +275 -0
  3. package/dist-cjs/schemas/schemas_0.js +851 -99
  4. package/dist-es/BedrockAgentCore.js +34 -0
  5. package/dist-es/commands/CreateABTestCommand.js +16 -0
  6. package/dist-es/commands/DeleteABTestCommand.js +16 -0
  7. package/dist-es/commands/DeleteBatchEvaluationCommand.js +16 -0
  8. package/dist-es/commands/DeleteRecommendationCommand.js +16 -0
  9. package/dist-es/commands/GetABTestCommand.js +16 -0
  10. package/dist-es/commands/GetBatchEvaluationCommand.js +16 -0
  11. package/dist-es/commands/GetRecommendationCommand.js +16 -0
  12. package/dist-es/commands/ListABTestsCommand.js +16 -0
  13. package/dist-es/commands/ListBatchEvaluationsCommand.js +16 -0
  14. package/dist-es/commands/ListRecommendationsCommand.js +16 -0
  15. package/dist-es/commands/StartBatchEvaluationCommand.js +16 -0
  16. package/dist-es/commands/StartRecommendationCommand.js +16 -0
  17. package/dist-es/commands/StopBatchEvaluationCommand.js +16 -0
  18. package/dist-es/commands/UpdateABTestCommand.js +16 -0
  19. package/dist-es/commands/index.js +14 -0
  20. package/dist-es/index.js +1 -0
  21. package/dist-es/models/enums.js +60 -0
  22. package/dist-es/models/models_1.js +1 -0
  23. package/dist-es/pagination/ListABTestsPaginator.js +4 -0
  24. package/dist-es/pagination/ListBatchEvaluationsPaginator.js +4 -0
  25. package/dist-es/pagination/ListRecommendationsPaginator.js +4 -0
  26. package/dist-es/pagination/index.js +3 -0
  27. package/dist-es/schemas/schemas_0.js +843 -93
  28. package/dist-types/BedrockAgentCore.d.ts +122 -0
  29. package/dist-types/BedrockAgentCoreClient.d.ts +16 -2
  30. package/dist-types/commands/BatchCreateMemoryRecordsCommand.d.ts +10 -0
  31. package/dist-types/commands/BatchUpdateMemoryRecordsCommand.d.ts +10 -0
  32. package/dist-types/commands/CreateABTestCommand.d.ts +134 -0
  33. package/dist-types/commands/DeleteABTestCommand.d.ts +97 -0
  34. package/dist-types/commands/DeleteBatchEvaluationCommand.d.ts +97 -0
  35. package/dist-types/commands/DeleteRecommendationCommand.d.ts +93 -0
  36. package/dist-types/commands/GetABTestCommand.d.ts +165 -0
  37. package/dist-types/commands/GetBatchEvaluationCommand.d.ts +148 -0
  38. package/dist-types/commands/GetMemoryRecordCommand.d.ts +7 -2
  39. package/dist-types/commands/GetRecommendationCommand.d.ts +220 -0
  40. package/dist-types/commands/GetResourceOauth2TokenCommand.d.ts +7 -1
  41. package/dist-types/commands/ListABTestsCommand.d.ts +103 -0
  42. package/dist-types/commands/ListBatchEvaluationsCommand.d.ts +126 -0
  43. package/dist-types/commands/ListMemoryRecordsCommand.d.ts +25 -2
  44. package/dist-types/commands/ListRecommendationsCommand.d.ts +100 -0
  45. package/dist-types/commands/RetrieveMemoryRecordsCommand.d.ts +16 -6
  46. package/dist-types/commands/SearchRegistryRecordsCommand.d.ts +2 -1
  47. package/dist-types/commands/StartBatchEvaluationCommand.d.ts +172 -0
  48. package/dist-types/commands/StartRecommendationCommand.d.ts +300 -0
  49. package/dist-types/commands/StopBatchEvaluationCommand.d.ts +98 -0
  50. package/dist-types/commands/UpdateABTestCommand.d.ts +136 -0
  51. package/dist-types/commands/index.d.ts +14 -0
  52. package/dist-types/index.d.ts +1 -0
  53. package/dist-types/models/enums.d.ts +116 -0
  54. package/dist-types/models/models_0.d.ts +2595 -386
  55. package/dist-types/models/models_1.d.ts +147 -0
  56. package/dist-types/pagination/ListABTestsPaginator.d.ts +7 -0
  57. package/dist-types/pagination/ListBatchEvaluationsPaginator.d.ts +7 -0
  58. package/dist-types/pagination/ListRecommendationsPaginator.d.ts +7 -0
  59. package/dist-types/pagination/index.d.ts +3 -0
  60. package/dist-types/schemas/schemas_0.d.ts +99 -0
  61. package/dist-types/ts3.4/BedrockAgentCore.d.ts +262 -0
  62. package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +84 -0
  63. package/dist-types/ts3.4/commands/CreateABTestCommand.d.ts +47 -0
  64. package/dist-types/ts3.4/commands/DeleteABTestCommand.d.ts +47 -0
  65. package/dist-types/ts3.4/commands/DeleteBatchEvaluationCommand.d.ts +51 -0
  66. package/dist-types/ts3.4/commands/DeleteRecommendationCommand.d.ts +51 -0
  67. package/dist-types/ts3.4/commands/GetABTestCommand.d.ts +47 -0
  68. package/dist-types/ts3.4/commands/GetBatchEvaluationCommand.d.ts +51 -0
  69. package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +51 -0
  70. package/dist-types/ts3.4/commands/ListABTestsCommand.d.ts +47 -0
  71. package/dist-types/ts3.4/commands/ListBatchEvaluationsCommand.d.ts +51 -0
  72. package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +51 -0
  73. package/dist-types/ts3.4/commands/SearchRegistryRecordsCommand.d.ts +2 -4
  74. package/dist-types/ts3.4/commands/StartBatchEvaluationCommand.d.ts +51 -0
  75. package/dist-types/ts3.4/commands/StartRecommendationCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/StopBatchEvaluationCommand.d.ts +51 -0
  77. package/dist-types/ts3.4/commands/UpdateABTestCommand.d.ts +47 -0
  78. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  79. package/dist-types/ts3.4/index.d.ts +1 -0
  80. package/dist-types/ts3.4/models/enums.d.ts +73 -0
  81. package/dist-types/ts3.4/models/models_0.d.ts +801 -43
  82. package/dist-types/ts3.4/models/models_1.d.ts +40 -0
  83. package/dist-types/ts3.4/pagination/ListABTestsPaginator.d.ts +11 -0
  84. package/dist-types/ts3.4/pagination/ListBatchEvaluationsPaginator.d.ts +11 -0
  85. package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -0
  86. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  87. package/dist-types/ts3.4/schemas/schemas_0.d.ts +99 -0
  88. package/package.json +7 -7
@@ -1,12 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteEventInput$ = exports.CustomDescriptor$ = exports.CreateEventOutput$ = exports.CreateEventInput$ = exports.Conversational$ = exports.ContentStopEvent$ = exports.ContentStartEvent$ = exports.ContentDeltaEvent$ = exports.ContentBlock$ = exports.CompleteResourceTokenAuthResponse$ = exports.CompleteResourceTokenAuthRequest$ = exports.CodeInterpreterSessionSummary$ = exports.CodeInterpreterResult$ = exports.Certificate$ = exports.BrowserSessionSummary$ = exports.BrowserSessionStream$ = exports.BrowserProfileConfiguration$ = exports.BrowserExtension$ = exports.BrowserEnterprisePolicy$ = exports.BranchFilter$ = exports.Branch$ = exports.BatchUpdateMemoryRecordsOutput$ = exports.BatchUpdateMemoryRecordsInput$ = exports.BatchDeleteMemoryRecordsOutput$ = exports.BatchDeleteMemoryRecordsInput$ = exports.BatchCreateMemoryRecordsOutput$ = exports.BatchCreateMemoryRecordsInput$ = exports.BasicAuth$ = exports.AutomationStreamUpdate$ = exports.AutomationStream$ = exports.AgentSkillsDescriptor$ = exports.AgentCardDefinition$ = exports.ActorSummary$ = exports.A2aDescriptor$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.UnauthorizedException$ = exports.ThrottlingException$ = exports.ThrottledException$ = exports.ServiceQuotaExceededException$ = exports.ServiceException$ = exports.RuntimeClientError$ = exports.RetryableConflictException$ = exports.ResourceNotFoundException$ = exports.InvalidInputException$ = exports.InternalServerException$ = exports.DuplicateIdException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.BedrockAgentCoreServiceException$ = void 0;
4
- exports.HarnessOpenAiModelConfig$ = exports.HarnessMetadataEvent$ = exports.HarnessMessageStopEvent$ = exports.HarnessMessageStartEvent$ = exports.HarnessMessage$ = exports.HarnessInlineFunctionConfig$ = exports.HarnessGeminiModelConfig$ = exports.HarnessContentBlockStopEvent$ = exports.HarnessContentBlockStartEvent$ = exports.HarnessContentBlockDeltaEvent$ = exports.HarnessBedrockModelConfig$ = exports.HarnessAgentCoreGatewayConfig$ = exports.HarnessAgentCoreCodeInterpreterConfig$ = exports.HarnessAgentCoreBrowserConfig$ = exports.GetWorkloadAccessTokenResponse$ = exports.GetWorkloadAccessTokenRequest$ = exports.GetWorkloadAccessTokenForUserIdResponse$ = exports.GetWorkloadAccessTokenForUserIdRequest$ = exports.GetWorkloadAccessTokenForJWTResponse$ = exports.GetWorkloadAccessTokenForJWTRequest$ = exports.GetResourceOauth2TokenResponse$ = exports.GetResourceOauth2TokenRequest$ = exports.GetResourceApiKeyResponse$ = exports.GetResourceApiKeyRequest$ = exports.GetMemoryRecordOutput$ = exports.GetMemoryRecordInput$ = exports.GetEventOutput$ = exports.GetEventInput$ = exports.GetCodeInterpreterSessionResponse$ = exports.GetCodeInterpreterSessionRequest$ = exports.GetBrowserSessionResponse$ = exports.GetBrowserSessionRequest$ = exports.GetAgentCardResponse$ = exports.GetAgentCardRequest$ = exports.FilterInput$ = exports.ExtractionJobMetadata$ = exports.ExtractionJobFilterInput$ = exports.ExtractionJob$ = exports.ExternalProxy$ = exports.EventMetadataFilterExpression$ = exports.Event$ = exports.EvaluationResultContent$ = exports.EvaluationReferenceInput$ = exports.EvaluationExpectedTrajectory$ = exports.EvaluateResponse$ = exports.EvaluateRequest$ = exports.Descriptors$ = exports.DeleteMemoryRecordOutput$ = exports.DeleteMemoryRecordInput$ = exports.DeleteEventOutput$ = void 0;
5
- exports.MemoryRecordSummary$ = exports.MemoryRecordOutput$ = exports.MemoryRecordDeleteInput$ = exports.MemoryRecordCreateInput$ = exports.MemoryRecord$ = exports.MemoryMetadataFilterExpression$ = exports.McpDescriptor$ = exports.LiveViewStream$ = exports.ListSessionsOutput$ = exports.ListSessionsInput$ = exports.ListMemoryRecordsOutput$ = exports.ListMemoryRecordsInput$ = exports.ListMemoryExtractionJobsOutput$ = exports.ListMemoryExtractionJobsInput$ = exports.ListEventsOutput$ = exports.ListEventsInput$ = exports.ListCodeInterpreterSessionsResponse$ = exports.ListCodeInterpreterSessionsRequest$ = exports.ListBrowserSessionsResponse$ = exports.ListBrowserSessionsRequest$ = exports.ListActorsOutput$ = exports.ListActorsInput$ = exports.KeyTypeResult$ = exports.KeyTypeArguments$ = exports.KeyShortcutResult$ = exports.KeyShortcutArguments$ = exports.KeyPressResult$ = exports.KeyPressArguments$ = exports.InvokeHarnessResponse$ = exports.InvokeHarnessRequest$ = exports.InvokeCodeInterpreterResponse$ = exports.InvokeCodeInterpreterRequest$ = exports.InvokeBrowserResponse$ = exports.InvokeBrowserRequest$ = exports.InvokeAgentRuntimeResponse$ = exports.InvokeAgentRuntimeRequest$ = exports.InvokeAgentRuntimeCommandResponse$ = exports.InvokeAgentRuntimeCommandRequestBody$ = exports.InvokeAgentRuntimeCommandRequest$ = exports.InputContentBlock$ = exports.HarnessToolUseBlockStart$ = exports.HarnessToolUseBlockDelta$ = exports.HarnessToolUseBlock$ = exports.HarnessToolResultBlockStart$ = exports.HarnessToolResultBlock$ = exports.HarnessTool$ = exports.HarnessTokenUsage$ = exports.HarnessStreamMetrics$ = exports.HarnessRemoteMcpConfig$ = exports.HarnessReasoningTextBlock$ = void 0;
6
- exports.UpdateBrowserStreamRequest$ = exports.ToolsDefinition$ = exports.ToolResultStructuredContent$ = exports.ToolArguments$ = exports.TokenUsage$ = exports.StopRuntimeSessionResponse$ = exports.StopRuntimeSessionRequest$ = exports.StopCodeInterpreterSessionResponse$ = exports.StopCodeInterpreterSessionRequest$ = exports.StopBrowserSessionResponse$ = exports.StopBrowserSessionRequest$ = exports.StartMemoryExtractionJobOutput$ = exports.StartMemoryExtractionJobInput$ = exports.StartCodeInterpreterSessionResponse$ = exports.StartCodeInterpreterSessionRequest$ = exports.StartBrowserSessionResponse$ = exports.StartBrowserSessionRequest$ = exports.SpanContext$ = exports.SkillMdDefinition$ = exports.SkillDefinition$ = exports.SessionSummary$ = exports.SessionFilter$ = exports.ServerDefinition$ = exports.SecretsManagerLocation$ = exports.SearchRegistryRecordsResponse$ = exports.SearchRegistryRecordsRequest$ = exports.SearchCriteria$ = exports.ScreenshotResult$ = exports.ScreenshotArguments$ = exports.SaveBrowserSessionProfileResponse$ = exports.SaveBrowserSessionProfileRequest$ = exports.S3Location$ = exports.RetrieveMemoryRecordsOutput$ = exports.RetrieveMemoryRecordsInput$ = exports.ResponseChunk$ = exports.ResourceContent$ = exports.RegistryRecordSummary$ = exports.ProxyConfiguration$ = exports.ProxyBypass$ = exports.OAuthCredentialProvider$ = exports.MouseScrollResult$ = exports.MouseScrollArguments$ = exports.MouseMoveResult$ = exports.MouseMoveArguments$ = exports.MouseDragResult$ = exports.MouseDragArguments$ = exports.MouseClickResult$ = exports.MouseClickArguments$ = exports.MessageMetadata$ = exports.MemoryRecordUpdateInput$ = void 0;
7
- exports.GetMemoryRecord$ = exports.GetEvent$ = exports.GetCodeInterpreterSession$ = exports.GetBrowserSession$ = exports.GetAgentCard$ = exports.Evaluate$ = exports.DeleteMemoryRecord$ = exports.DeleteEvent$ = exports.CreateEvent$ = exports.CompleteResourceTokenAuth$ = exports.BatchUpdateMemoryRecords$ = exports.BatchDeleteMemoryRecords$ = exports.BatchCreateMemoryRecords$ = exports.UserIdentifier$ = exports.StreamUpdate$ = exports.RightExpression$ = exports.ResourceLocation$ = exports.ProxyCredentials$ = exports.Proxy$ = exports.PayloadType$ = exports.MetadataValue$ = exports.MemoryContent$ = exports.LeftExpression$ = exports.InvokeHarnessStreamOutput$ = exports.InvokeAgentRuntimeCommandStreamOutput$ = exports.HarnessToolResultContentBlock$ = exports.HarnessToolResultBlockDelta$ = exports.HarnessToolConfiguration$ = exports.HarnessSystemContentBlock$ = exports.HarnessSkill$ = exports.HarnessReasoningContentBlockDelta$ = exports.HarnessReasoningContentBlock$ = exports.HarnessModelConfiguration$ = exports.HarnessGatewayOutboundAuth$ = exports.HarnessContentBlockStart$ = exports.HarnessContentBlockDelta$ = exports.HarnessContentBlock$ = exports.ExtractionJobMessages$ = exports.EvaluationTarget$ = exports.EvaluationInput$ = exports.EvaluationContent$ = exports.Context$ = exports.Content$ = exports.CodeInterpreterStreamOutput$ = exports.CertificateLocation$ = exports.BrowserActionResult$ = exports.BrowserAction$ = exports.ViewPort$ = exports.ValidationExceptionField$ = exports.UpdateBrowserStreamResponse$ = void 0;
8
- exports.UpdateBrowserStream$ = exports.StopRuntimeSession$ = exports.StopCodeInterpreterSession$ = exports.StopBrowserSession$ = exports.StartMemoryExtractionJob$ = exports.StartCodeInterpreterSession$ = exports.StartBrowserSession$ = exports.SearchRegistryRecords$ = exports.SaveBrowserSessionProfile$ = exports.RetrieveMemoryRecords$ = exports.ListSessions$ = exports.ListMemoryRecords$ = exports.ListMemoryExtractionJobs$ = exports.ListEvents$ = exports.ListCodeInterpreterSessions$ = exports.ListBrowserSessions$ = exports.ListActors$ = exports.InvokeHarness$ = exports.InvokeCodeInterpreter$ = exports.InvokeBrowser$ = exports.InvokeAgentRuntimeCommand$ = exports.InvokeAgentRuntime$ = exports.GetWorkloadAccessTokenForUserId$ = exports.GetWorkloadAccessTokenForJWT$ = exports.GetWorkloadAccessToken$ = exports.GetResourceOauth2Token$ = exports.GetResourceApiKey$ = void 0;
3
+ exports.CompleteResourceTokenAuthResponse$ = exports.CompleteResourceTokenAuthRequest$ = exports.CodeInterpreterSessionSummary$ = exports.CodeInterpreterResult$ = exports.CloudWatchOutputConfig$ = exports.CloudWatchLogsTraceConfig$ = exports.CloudWatchLogsSource$ = exports.CloudWatchLogsRule$ = exports.CloudWatchLogsFilter$ = exports.CloudWatchFilterConfig$ = exports.Certificate$ = exports.BrowserSessionSummary$ = exports.BrowserSessionStream$ = exports.BrowserProfileConfiguration$ = exports.BrowserExtension$ = exports.BrowserEnterprisePolicy$ = exports.BranchFilter$ = exports.Branch$ = exports.BatchUpdateMemoryRecordsOutput$ = exports.BatchUpdateMemoryRecordsInput$ = exports.BatchEvaluationSummary$ = exports.BatchDeleteMemoryRecordsOutput$ = exports.BatchDeleteMemoryRecordsInput$ = exports.BatchCreateMemoryRecordsOutput$ = exports.BatchCreateMemoryRecordsInput$ = exports.BasicAuth$ = exports.AutomationStreamUpdate$ = exports.AutomationStream$ = exports.AgentSkillsDescriptor$ = exports.AgentCardDefinition$ = exports.ActorSummary$ = exports.ABTestSummary$ = exports.ABTestResults$ = exports.A2aDescriptor$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.UnauthorizedException$ = exports.ThrottlingException$ = exports.ThrottledException$ = exports.ServiceQuotaExceededException$ = exports.ServiceException$ = exports.RuntimeClientError$ = exports.RetryableConflictException$ = exports.ResourceNotFoundException$ = exports.InvalidInputException$ = exports.InternalServerException$ = exports.DuplicateIdException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.BedrockAgentCoreServiceException$ = void 0;
4
+ exports.GetBrowserSessionRequest$ = exports.GetBatchEvaluationResponse$ = exports.GetBatchEvaluationRequest$ = exports.GetAgentCardResponse$ = exports.GetAgentCardRequest$ = exports.GetABTestResponse$ = exports.GetABTestRequest$ = exports.GatewayFilter$ = exports.FilterInput$ = exports.ExtractionJobMetadata$ = exports.ExtractionJobFilterInput$ = exports.ExtractionJob$ = exports.ExternalProxy$ = exports.EventMetadataFilterExpression$ = exports.Event$ = exports.EvaluatorSummary$ = exports.EvaluatorStatistics$ = exports.EvaluatorMetric$ = exports.Evaluator$ = exports.EvaluationResultContent$ = exports.EvaluationReferenceInput$ = exports.EvaluationJobResults$ = exports.EvaluationExpectedTrajectory$ = exports.EvaluateResponse$ = exports.EvaluateRequest$ = exports.Descriptors$ = exports.DeleteRecommendationResponse$ = exports.DeleteRecommendationRequest$ = exports.DeleteMemoryRecordOutput$ = exports.DeleteMemoryRecordInput$ = exports.DeleteEventOutput$ = exports.DeleteEventInput$ = exports.DeleteBatchEvaluationResponse$ = exports.DeleteBatchEvaluationRequest$ = exports.DeleteABTestResponse$ = exports.DeleteABTestRequest$ = exports.CustomDescriptor$ = exports.CreateEventOutput$ = exports.CreateEventInput$ = exports.CreateABTestResponse$ = exports.CreateABTestRequest$ = exports.Conversational$ = exports.ControlStats$ = exports.ContentStopEvent$ = exports.ContentStartEvent$ = exports.ContentDeltaEvent$ = exports.ContentBlock$ = exports.ConfigurationBundleToolEntry$ = exports.ConfigurationBundleRef$ = exports.ConfidenceInterval$ = void 0;
5
+ exports.InvokeAgentRuntimeRequest$ = exports.InvokeAgentRuntimeCommandResponse$ = exports.InvokeAgentRuntimeCommandRequestBody$ = exports.InvokeAgentRuntimeCommandRequest$ = exports.InputContentBlock$ = exports.InlineGroundTruth$ = exports.HarnessToolUseBlockStart$ = exports.HarnessToolUseBlockDelta$ = exports.HarnessToolUseBlock$ = exports.HarnessToolResultBlockStart$ = exports.HarnessToolResultBlock$ = exports.HarnessTool$ = exports.HarnessTokenUsage$ = exports.HarnessStreamMetrics$ = exports.HarnessRemoteMcpConfig$ = exports.HarnessReasoningTextBlock$ = exports.HarnessOpenAiModelConfig$ = exports.HarnessMetadataEvent$ = exports.HarnessMessageStopEvent$ = exports.HarnessMessageStartEvent$ = exports.HarnessMessage$ = exports.HarnessInlineFunctionConfig$ = exports.HarnessGeminiModelConfig$ = exports.HarnessContentBlockStopEvent$ = exports.HarnessContentBlockStartEvent$ = exports.HarnessContentBlockDeltaEvent$ = exports.HarnessBedrockModelConfig$ = exports.HarnessAgentCoreGatewayConfig$ = exports.HarnessAgentCoreCodeInterpreterConfig$ = exports.HarnessAgentCoreBrowserConfig$ = exports.GroundTruthTurn$ = exports.GetWorkloadAccessTokenResponse$ = exports.GetWorkloadAccessTokenRequest$ = exports.GetWorkloadAccessTokenForUserIdResponse$ = exports.GetWorkloadAccessTokenForUserIdRequest$ = exports.GetWorkloadAccessTokenForJWTResponse$ = exports.GetWorkloadAccessTokenForJWTRequest$ = exports.GetResourceOauth2TokenResponse$ = exports.GetResourceOauth2TokenRequest$ = exports.GetResourceApiKeyResponse$ = exports.GetResourceApiKeyRequest$ = exports.GetRecommendationResponse$ = exports.GetRecommendationRequest$ = exports.GetMemoryRecordOutput$ = exports.GetMemoryRecordInput$ = exports.GetEventOutput$ = exports.GetEventInput$ = exports.GetCodeInterpreterSessionResponse$ = exports.GetCodeInterpreterSessionRequest$ = exports.GetBrowserSessionResponse$ = void 0;
6
+ exports.MouseScrollArguments$ = exports.MouseMoveResult$ = exports.MouseMoveArguments$ = exports.MouseDragResult$ = exports.MouseDragArguments$ = exports.MouseClickResult$ = exports.MouseClickArguments$ = exports.MessageMetadata$ = exports.MemoryRecordUpdateInput$ = exports.MemoryRecordSummary$ = exports.MemoryRecordOutput$ = exports.MemoryRecordDeleteInput$ = exports.MemoryRecordCreateInput$ = exports.MemoryRecord$ = exports.MemoryMetadataFilterExpression$ = exports.McpDescriptor$ = exports.LiveViewStream$ = exports.ListSessionsOutput$ = exports.ListSessionsInput$ = exports.ListRecommendationsResponse$ = exports.ListRecommendationsRequest$ = exports.ListMemoryRecordsOutput$ = exports.ListMemoryRecordsInput$ = exports.ListMemoryExtractionJobsOutput$ = exports.ListMemoryExtractionJobsInput$ = exports.ListEventsOutput$ = exports.ListEventsInput$ = exports.ListCodeInterpreterSessionsResponse$ = exports.ListCodeInterpreterSessionsRequest$ = exports.ListBrowserSessionsResponse$ = exports.ListBrowserSessionsRequest$ = exports.ListBatchEvaluationsResponse$ = exports.ListBatchEvaluationsRequest$ = exports.ListActorsOutput$ = exports.ListActorsInput$ = exports.ListABTestsResponse$ = exports.ListABTestsRequest$ = exports.KeyTypeResult$ = exports.KeyTypeArguments$ = exports.KeyShortcutResult$ = exports.KeyShortcutArguments$ = exports.KeyPressResult$ = exports.KeyPressArguments$ = exports.InvokeHarnessResponse$ = exports.InvokeHarnessRequest$ = exports.InvokeCodeInterpreterResponse$ = exports.InvokeCodeInterpreterRequest$ = exports.InvokeBrowserResponse$ = exports.InvokeBrowserRequest$ = exports.InvokeAgentRuntimeResponse$ = void 0;
7
+ exports.SystemPromptConfigurationBundle$ = exports.StopRuntimeSessionResponse$ = exports.StopRuntimeSessionRequest$ = exports.StopCodeInterpreterSessionResponse$ = exports.StopCodeInterpreterSessionRequest$ = exports.StopBrowserSessionResponse$ = exports.StopBrowserSessionRequest$ = exports.StopBatchEvaluationResponse$ = exports.StopBatchEvaluationRequest$ = exports.StartRecommendationResponse$ = exports.StartRecommendationRequest$ = exports.StartMemoryExtractionJobOutput$ = exports.StartMemoryExtractionJobInput$ = exports.StartCodeInterpreterSessionResponse$ = exports.StartCodeInterpreterSessionRequest$ = exports.StartBrowserSessionResponse$ = exports.StartBrowserSessionRequest$ = exports.StartBatchEvaluationResponse$ = exports.StartBatchEvaluationRequest$ = exports.SpanContext$ = exports.SkillMdDefinition$ = exports.SkillDefinition$ = exports.SessionSummary$ = exports.SessionMetadataShape$ = exports.SessionFilterConfig$ = exports.SessionFilter$ = exports.ServerDefinition$ = exports.SecretsManagerLocation$ = exports.SearchRegistryRecordsResponse$ = exports.SearchRegistryRecordsRequest$ = exports.SearchCriteria$ = exports.ScreenshotResult$ = exports.ScreenshotArguments$ = exports.SaveBrowserSessionProfileResponse$ = exports.SaveBrowserSessionProfileRequest$ = exports.S3Location$ = exports.RetrieveMemoryRecordsOutput$ = exports.RetrieveMemoryRecordsInput$ = exports.ResponseChunk$ = exports.ResourceContent$ = exports.RegistryRecordSummary$ = exports.RecommendationSummary$ = exports.RecommendationResultConfigurationBundle$ = exports.RecommendationEvaluatorReference$ = exports.RecommendationEvaluationConfig$ = exports.ProxyConfiguration$ = exports.ProxyBypass$ = exports.PerVariantOnlineEvaluationConfig$ = exports.OAuthCredentialProvider$ = exports.MouseScrollResult$ = void 0;
8
+ exports.HarnessToolResultBlockDelta$ = exports.HarnessToolConfiguration$ = exports.HarnessSystemContentBlock$ = exports.HarnessSkill$ = exports.HarnessReasoningContentBlockDelta$ = exports.HarnessReasoningContentBlock$ = exports.HarnessModelConfiguration$ = exports.HarnessGatewayOutboundAuth$ = exports.HarnessContentBlockStart$ = exports.HarnessContentBlockDelta$ = exports.HarnessContentBlock$ = exports.GroundTruthTurnInput$ = exports.GroundTruthSource$ = exports.FilterValue$ = exports.ExtractionJobMessages$ = exports.EvaluationTarget$ = exports.EvaluationMetadata$ = exports.EvaluationInput$ = exports.EvaluationContent$ = exports.DataSourceConfig$ = exports.Context$ = exports.Content$ = exports.CodeInterpreterStreamOutput$ = exports.CertificateLocation$ = exports.BrowserActionResult$ = exports.BrowserAction$ = exports.AgentTracesConfig$ = exports.ABTestEvaluationConfig$ = exports.ViewPort$ = exports.VariantResult$ = exports.VariantConfiguration$ = exports.Variant$ = exports.ValidationExceptionField$ = exports.UpdateBrowserStreamResponse$ = exports.UpdateBrowserStreamRequest$ = exports.UpdateABTestResponse$ = exports.UpdateABTestRequest$ = exports.ToolsDefinition$ = exports.ToolResultStructuredContent$ = exports.ToolDescriptionTextInput$ = exports.ToolDescriptionRecommendationResult$ = exports.ToolDescriptionRecommendationConfig$ = exports.ToolDescriptionOutput$ = exports.ToolDescriptionInput$ = exports.ToolDescriptionConfigurationBundle$ = exports.ToolArguments$ = exports.TokenUsage$ = exports.TargetRef$ = exports.SystemPromptRecommendationResult$ = exports.SystemPromptRecommendationConfig$ = void 0;
9
+ exports.InvokeBrowser$ = exports.InvokeAgentRuntimeCommand$ = exports.InvokeAgentRuntime$ = exports.GetWorkloadAccessTokenForUserId$ = exports.GetWorkloadAccessTokenForJWT$ = exports.GetWorkloadAccessToken$ = exports.GetResourceOauth2Token$ = exports.GetResourceApiKey$ = exports.GetRecommendation$ = exports.GetMemoryRecord$ = exports.GetEvent$ = exports.GetCodeInterpreterSession$ = exports.GetBrowserSession$ = exports.GetBatchEvaluation$ = exports.GetAgentCard$ = exports.GetABTest$ = exports.Evaluate$ = exports.DeleteRecommendation$ = exports.DeleteMemoryRecord$ = exports.DeleteEvent$ = exports.DeleteBatchEvaluation$ = exports.DeleteABTest$ = exports.CreateEvent$ = exports.CreateABTest$ = exports.CompleteResourceTokenAuth$ = exports.BatchUpdateMemoryRecords$ = exports.BatchDeleteMemoryRecords$ = exports.BatchCreateMemoryRecords$ = exports.UserIdentifier$ = exports.ToolDescriptionSource$ = exports.ToolDescriptionConfig$ = exports.SystemPromptConfig$ = exports.StreamUpdate$ = exports.RightExpression$ = exports.ResourceLocation$ = exports.RecommendationResult$ = exports.RecommendationConfig$ = exports.ProxyCredentials$ = exports.Proxy$ = exports.PayloadType$ = exports.OutputConfig$ = exports.MetadataValue$ = exports.MemoryRecordRightExpression$ = exports.MemoryRecordMetadataValue$ = exports.MemoryRecordLeftExpression$ = exports.MemoryContent$ = exports.LeftExpression$ = exports.InvokeHarnessStreamOutput$ = exports.InvokeAgentRuntimeCommandStreamOutput$ = exports.HarnessToolResultContentBlock$ = void 0;
10
+ exports.UpdateBrowserStream$ = exports.UpdateABTest$ = exports.StopRuntimeSession$ = exports.StopCodeInterpreterSession$ = exports.StopBrowserSession$ = exports.StopBatchEvaluation$ = exports.StartRecommendation$ = exports.StartMemoryExtractionJob$ = exports.StartCodeInterpreterSession$ = exports.StartBrowserSession$ = exports.StartBatchEvaluation$ = exports.SearchRegistryRecords$ = exports.SaveBrowserSessionProfile$ = exports.RetrieveMemoryRecords$ = exports.ListSessions$ = exports.ListRecommendations$ = exports.ListMemoryRecords$ = exports.ListMemoryExtractionJobs$ = exports.ListEvents$ = exports.ListCodeInterpreterSessions$ = exports.ListBrowserSessions$ = exports.ListBatchEvaluations$ = exports.ListActors$ = exports.ListABTests$ = exports.InvokeHarness$ = exports.InvokeCodeInterpreter$ = void 0;
9
11
  const _A = "Accept";
12
+ const _ABTEC = "ABTestEvaluationConfig";
13
+ const _ABTR = "ABTestResults";
14
+ const _ABTS = "ABTestSummary";
15
+ const _ABTSL = "ABTestSummaryList";
10
16
  const _ACD = "AgentCardDefinition";
11
17
  const _AD = "A2aDescriptor";
12
18
  const _ADE = "AccessDeniedException";
@@ -16,6 +22,7 @@ const _ASD = "AgentSkillsDescriptor";
16
22
  const _ASL = "ActorSummaryList";
17
23
  const _ASU = "AutomationStreamUpdate";
18
24
  const _ASu = "AutomationStream";
25
+ const _ATC = "AgentTracesConfig";
19
26
  const _ATT = "AccessTokenType";
20
27
  const _AUT = "AuthorizationUrlType";
21
28
  const _B = "Body";
@@ -31,6 +38,8 @@ const _BDMRO = "BatchDeleteMemoryRecordsOutput";
31
38
  const _BE = "BrowserExtension";
32
39
  const _BEP = "BrowserEnterprisePolicy";
33
40
  const _BEPr = "BrowserEnterprisePolicies";
41
+ const _BES = "BatchEvaluationSummary";
42
+ const _BESL = "BatchEvaluationSummaryList";
34
43
  const _BEr = "BrowserExtensions";
35
44
  const _BF = "BranchFilter";
36
45
  const _BPC = "BrowserProfileConfiguration";
@@ -42,14 +51,21 @@ const _BUMRI = "BatchUpdateMemoryRecordsInput";
42
51
  const _BUMRO = "BatchUpdateMemoryRecordsOutput";
43
52
  const _Br = "Branch";
44
53
  const _C = "Certificate";
54
+ const _CABT = "CreateABTest";
55
+ const _CABTR = "CreateABTestRequest";
56
+ const _CABTRr = "CreateABTestResponse";
45
57
  const _CB = "ContentBlock";
46
58
  const _CBL = "ContentBlockList";
59
+ const _CBR = "ConfigurationBundleRef";
60
+ const _CBTE = "ConfigurationBundleToolEntry";
61
+ const _CBTEL = "ConfigurationBundleToolEntryList";
47
62
  const _CD = "CustomDescriptor";
48
63
  const _CDE = "ContentDeltaEvent";
49
64
  const _CE = "ConflictException";
50
65
  const _CEI = "CreateEventInput";
51
66
  const _CEO = "CreateEventOutput";
52
67
  const _CEr = "CreateEvent";
68
+ const _CI = "ConfidenceInterval";
53
69
  const _CIR = "CodeInterpreterResult";
54
70
  const _CISO = "CodeInterpreterStreamOutput";
55
71
  const _CISS = "CodeInterpreterSessionSummary";
@@ -60,14 +76,28 @@ const _CRTA = "CompleteResourceTokenAuth";
60
76
  const _CRTAR = "CompleteResourceTokenAuthRequest";
61
77
  const _CRTARo = "CompleteResourceTokenAuthResponse";
62
78
  const _CRVT = "CustomRequestValueType";
79
+ const _CS = "ControlStats";
63
80
  const _CSE = "ContentStartEvent";
64
81
  const _CSEo = "ContentStopEvent";
65
82
  const _CT = "Content-Type";
83
+ const _CWFC = "CloudWatchFilterConfig";
84
+ const _CWLF = "CloudWatchLogsFilter";
85
+ const _CWLFL = "CloudWatchLogsFilterList";
86
+ const _CWLR = "CloudWatchLogsRule";
87
+ const _CWLS = "CloudWatchLogsSource";
88
+ const _CWLTC = "CloudWatchLogsTraceConfig";
89
+ const _CWOC = "CloudWatchOutputConfig";
66
90
  const _Ce = "Certificates";
67
91
  const _Co = "Conversational";
68
92
  const _Con = "Content";
69
93
  const _Cont = "Context";
70
94
  const _D = "Description";
95
+ const _DABT = "DeleteABTest";
96
+ const _DABTR = "DeleteABTestRequest";
97
+ const _DABTRe = "DeleteABTestResponse";
98
+ const _DBE = "DeleteBatchEvaluation";
99
+ const _DBER = "DeleteBatchEvaluationRequest";
100
+ const _DBERe = "DeleteBatchEvaluationResponse";
71
101
  const _DE = "DeleteEvent";
72
102
  const _DEI = "DeleteEventInput";
73
103
  const _DEO = "DeleteEventOutput";
@@ -75,9 +105,13 @@ const _DIE = "DuplicateIdException";
75
105
  const _DMR = "DeleteMemoryRecord";
76
106
  const _DMRI = "DeleteMemoryRecordInput";
77
107
  const _DMRO = "DeleteMemoryRecordOutput";
108
+ const _DR = "DeleteRecommendation";
109
+ const _DRR = "DeleteRecommendationRequest";
110
+ const _DRRe = "DeleteRecommendationResponse";
111
+ const _DSC = "DataSourceConfig";
78
112
  const _De = "Descriptors";
79
113
  const _Do = "Document";
80
- const _E = "Event";
114
+ const _E = "Evaluator";
81
115
  const _EC = "EvaluationContent";
82
116
  const _ECL = "EvaluationContentList";
83
117
  const _EE = "EvaluationExplanation";
@@ -88,9 +122,14 @@ const _EJFI = "ExtractionJobFilterInput";
88
122
  const _EJM = "ExtractionJobMetadata";
89
123
  const _EJML = "ExtractionJobMetadataList";
90
124
  const _EJMx = "ExtractionJobMessages";
91
- const _EL = "EventList";
125
+ const _EJR = "EvaluationJobResults";
126
+ const _EL = "EvaluatorList";
127
+ const _ELv = "EventList";
128
+ const _EM = "EvaluatorMetric";
92
129
  const _EMFE = "EventMetadataFilterExpression";
93
130
  const _EMFL = "EventMetadataFilterList";
131
+ const _EML = "EvaluatorMetricList";
132
+ const _EMv = "EvaluationMetadata";
94
133
  const _EP = "ExternalProxy";
95
134
  const _ER = "EvaluateRequest";
96
135
  const _ERC = "EvaluationResultContent";
@@ -98,12 +137,23 @@ const _ERI = "EvaluationReferenceInput";
98
137
  const _ERIv = "EvaluationReferenceInputs";
99
138
  const _ERv = "EvaluateResponse";
100
139
  const _ERva = "EvaluationResults";
140
+ const _ES = "EvaluatorStatistics";
141
+ const _ESL = "EvaluatorSummaryList";
142
+ const _ESv = "EvaluatorSummary";
101
143
  const _ET = "EvaluationTarget";
102
- const _Ev = "Evaluate";
144
+ const _Ev = "Event";
145
+ const _Eva = "Evaluate";
103
146
  const _FI = "FilterInput";
147
+ const _FV = "FilterValue";
148
+ const _GABT = "GetABTest";
149
+ const _GABTR = "GetABTestRequest";
150
+ const _GABTRe = "GetABTestResponse";
104
151
  const _GAC = "GetAgentCard";
105
152
  const _GACR = "GetAgentCardRequest";
106
153
  const _GACRe = "GetAgentCardResponse";
154
+ const _GBE = "GetBatchEvaluation";
155
+ const _GBER = "GetBatchEvaluationRequest";
156
+ const _GBERe = "GetBatchEvaluationResponse";
107
157
  const _GBS = "GetBrowserSession";
108
158
  const _GBSR = "GetBrowserSessionRequest";
109
159
  const _GBSRe = "GetBrowserSessionResponse";
@@ -113,15 +163,23 @@ const _GCISRe = "GetCodeInterpreterSessionResponse";
113
163
  const _GE = "GetEvent";
114
164
  const _GEI = "GetEventInput";
115
165
  const _GEO = "GetEventOutput";
166
+ const _GF = "GatewayFilter";
116
167
  const _GMR = "GetMemoryRecord";
117
168
  const _GMRI = "GetMemoryRecordInput";
118
169
  const _GMRO = "GetMemoryRecordOutput";
170
+ const _GR = "GetRecommendation";
119
171
  const _GRAK = "GetResourceApiKey";
120
172
  const _GRAKR = "GetResourceApiKeyRequest";
121
173
  const _GRAKRe = "GetResourceApiKeyResponse";
122
174
  const _GROT = "GetResourceOauth2Token";
123
175
  const _GROTR = "GetResourceOauth2TokenRequest";
124
176
  const _GROTRe = "GetResourceOauth2TokenResponse";
177
+ const _GRR = "GetRecommendationRequest";
178
+ const _GRRe = "GetRecommendationResponse";
179
+ const _GTS = "GroundTruthSource";
180
+ const _GTT = "GroundTruthTurn";
181
+ const _GTTI = "GroundTruthTurnInput";
182
+ const _GTTL = "GroundTruthTurnList";
125
183
  const _GWAT = "GetWorkloadAccessToken";
126
184
  const _GWATFJWT = "GetWorkloadAccessTokenForJWT";
127
185
  const _GWATFJWTR = "GetWorkloadAccessTokenForJWTRequest";
@@ -193,6 +251,7 @@ const _ICBL = "InputContentBlockList";
193
251
  const _ICI = "InvokeCodeInterpreter";
194
252
  const _ICIR = "InvokeCodeInterpreterRequest";
195
253
  const _ICIRn = "InvokeCodeInterpreterResponse";
254
+ const _IGT = "InlineGroundTruth";
196
255
  const _IH = "InvokeHarness";
197
256
  const _IHR = "InvokeHarnessRequest";
198
257
  const _IHRn = "InvokeHarnessResponse";
@@ -206,8 +265,14 @@ const _KSR = "KeyShortcutResult";
206
265
  const _KTA = "KeyTypeArguments";
207
266
  const _KTR = "KeyTypeResult";
208
267
  const _LA = "ListActors";
268
+ const _LABT = "ListABTests";
269
+ const _LABTR = "ListABTestsRequest";
270
+ const _LABTRi = "ListABTestsResponse";
209
271
  const _LAI = "ListActorsInput";
210
272
  const _LAO = "ListActorsOutput";
273
+ const _LBE = "ListBatchEvaluations";
274
+ const _LBER = "ListBatchEvaluationsRequest";
275
+ const _LBERi = "ListBatchEvaluationsResponse";
211
276
  const _LBS = "ListBrowserSessions";
212
277
  const _LBSR = "ListBrowserSessionsRequest";
213
278
  const _LBSRi = "ListBrowserSessionsResponse";
@@ -224,6 +289,9 @@ const _LMEJO = "ListMemoryExtractionJobsOutput";
224
289
  const _LMR = "ListMemoryRecords";
225
290
  const _LMRI = "ListMemoryRecordsInput";
226
291
  const _LMRO = "ListMemoryRecordsOutput";
292
+ const _LR = "ListRecommendations";
293
+ const _LRR = "ListRecommendationsRequest";
294
+ const _LRRi = "ListRecommendationsResponse";
227
295
  const _LS = "ListSessions";
228
296
  const _LSI = "ListSessionsInput";
229
297
  const _LSO = "ListSessionsOutput";
@@ -247,8 +315,12 @@ const _MRCI = "MemoryRecordCreateInput";
247
315
  const _MRCIL = "MemoryRecordsCreateInputList";
248
316
  const _MRDI = "MemoryRecordDeleteInput";
249
317
  const _MRDIL = "MemoryRecordsDeleteInputList";
318
+ const _MRLE = "MemoryRecordLeftExpression";
319
+ const _MRMM = "MemoryRecordMetadataMap";
320
+ const _MRMV = "MemoryRecordMetadataValue";
250
321
  const _MRO = "MemoryRecordOutput";
251
322
  const _MROL = "MemoryRecordsOutputList";
323
+ const _MRRE = "MemoryRecordRightExpression";
252
324
  const _MRS = "MemoryRecordSummary";
253
325
  const _MRSL = "MemoryRecordSummaryList";
254
326
  const _MRUI = "MemoryRecordUpdateInput";
@@ -260,28 +332,45 @@ const _MV = "MetadataValue";
260
332
  const _OACP = "OAuthCredentialProvider";
261
333
  const _OACPV = "OAuthCustomParametersValue";
262
334
  const _OACPu = "OAuthCustomParameters";
335
+ const _OC = "OutputConfig";
263
336
  const _P = "Proxies";
264
337
  const _PB = "ProxyBypass";
265
338
  const _PC = "ProxyConfiguration";
266
339
  const _PCr = "ProxyCredentials";
267
340
  const _PT = "PayloadType";
268
341
  const _PTL = "PayloadTypeList";
342
+ const _PVOEC = "PerVariantOnlineEvaluationConfig";
343
+ const _PVOECL = "PerVariantOnlineEvaluationConfigList";
269
344
  const _Pr = "Proxy";
270
345
  const _RC = "ResourceContent";
271
346
  const _RCE = "RetryableConflictException";
272
347
  const _RCEu = "RuntimeClientError";
273
348
  const _RCe = "ResponseChunk";
349
+ const _RCec = "RecommendationConfig";
274
350
  const _RE = "RightExpression";
351
+ const _REC = "RecommendationEvaluationConfig";
352
+ const _REL = "RecommendationEvaluatorList";
353
+ const _RER = "RecommendationEvaluatorReference";
275
354
  const _RL = "ResourceLocation";
276
355
  const _RMR = "RetrieveMemoryRecords";
277
356
  const _RMRI = "RetrieveMemoryRecordsInput";
278
357
  const _RMRO = "RetrieveMemoryRecordsOutput";
279
358
  const _RNFE = "ResourceNotFoundException";
359
+ const _RR = "RecommendationResult";
360
+ const _RRCB = "RecommendationResultConfigurationBundle";
280
361
  const _RRS = "RegistryRecordSummary";
281
362
  const _RRSL = "RegistryRecordSummaryList";
282
363
  const _RS = "ResponseStream";
364
+ const _RSL = "RecommendationSummaryList";
365
+ const _RSe = "RecommendationSummary";
283
366
  const _S = "State";
284
367
  const _SA = "ScreenshotArguments";
368
+ const _SBE = "StartBatchEvaluation";
369
+ const _SBER = "StartBatchEvaluationRequest";
370
+ const _SBERt = "StartBatchEvaluationResponse";
371
+ const _SBERto = "StopBatchEvaluationRequest";
372
+ const _SBERtop = "StopBatchEvaluationResponse";
373
+ const _SBEt = "StopBatchEvaluation";
285
374
  const _SBS = "StartBrowserSession";
286
375
  const _SBSP = "SaveBrowserSessionProfile";
287
376
  const _SBSPR = "SaveBrowserSessionProfileRequest";
@@ -303,6 +392,7 @@ const _SD = "ServerDefinition";
303
392
  const _SDk = "SkillDefinition";
304
393
  const _SE = "ServiceException";
305
394
  const _SF = "SessionFilter";
395
+ const _SFC = "SessionFilterConfig";
306
396
  const _SJ = "SensitiveJson";
307
397
  const _SL = "S3Location";
308
398
  const _SMD = "SkillMdDefinition";
@@ -310,14 +400,24 @@ const _SMEJ = "StartMemoryExtractionJob";
310
400
  const _SMEJI = "StartMemoryExtractionJobInput";
311
401
  const _SMEJO = "StartMemoryExtractionJobOutput";
312
402
  const _SML = "SecretsManagerLocation";
403
+ const _SMLe = "SessionMetadataList";
404
+ const _SMS = "SessionMetadataShape";
405
+ const _SPC = "SystemPromptConfig";
406
+ const _SPCB = "SystemPromptConfigurationBundle";
407
+ const _SPRC = "SystemPromptRecommendationConfig";
408
+ const _SPRR = "SystemPromptRecommendationResult";
409
+ const _SPT = "SystemPromptText";
313
410
  const _SQEE = "ServiceQuotaExceededException";
314
411
  const _SR = "ScreenshotResult";
315
- const _SRR = "SearchRegistryRecords";
412
+ const _SRR = "StartRecommendationRequest";
316
413
  const _SRRR = "SearchRegistryRecordsRequest";
317
414
  const _SRRRe = "SearchRegistryRecordsResponse";
415
+ const _SRRe = "SearchRegistryRecords";
416
+ const _SRRt = "StartRecommendationResponse";
318
417
  const _SRS = "StopRuntimeSession";
319
418
  const _SRSR = "StopRuntimeSessionRequest";
320
419
  const _SRSRt = "StopRuntimeSessionResponse";
420
+ const _SRt = "StartRecommendation";
321
421
  const _SS = "SensitiveString";
322
422
  const _SSL = "SessionSummaryList";
323
423
  const _SSe = "SessionSummary";
@@ -326,20 +426,40 @@ const _SU = "StreamUpdate";
326
426
  const _Sp = "Spans";
327
427
  const _TA = "ToolArguments";
328
428
  const _TD = "ToolsDefinition";
429
+ const _TDC = "ToolDescriptionConfig";
430
+ const _TDCB = "ToolDescriptionConfigurationBundle";
431
+ const _TDI = "ToolDescriptionInput";
432
+ const _TDL = "ToolDescriptionList";
433
+ const _TDO = "ToolDescriptionOutput";
434
+ const _TDRC = "ToolDescriptionRecommendationConfig";
435
+ const _TDRL = "ToolDescriptionResultList";
436
+ const _TDRR = "ToolDescriptionRecommendationResult";
437
+ const _TDS = "ToolDescriptionSource";
438
+ const _TDT = "ToolDescriptionText";
439
+ const _TDTI = "ToolDescriptionTextInput";
329
440
  const _TE = "ThrottledException";
330
441
  const _TEh = "ThrottlingException";
442
+ const _TR = "TargetRef";
331
443
  const _TRSC = "ToolResultStructuredContent";
332
444
  const _TU = "TokenUsage";
445
+ const _UABT = "UpdateABTest";
446
+ const _UABTR = "UpdateABTestRequest";
447
+ const _UABTRp = "UpdateABTestResponse";
333
448
  const _UBS = "UpdateBrowserStream";
334
449
  const _UBSR = "UpdateBrowserStreamRequest";
335
450
  const _UBSRp = "UpdateBrowserStreamResponse";
336
451
  const _UE = "UnauthorizedException";
337
452
  const _UI = "UserIdentifier";
338
453
  const _UTT = "UserTokenType";
454
+ const _V = "Variant";
455
+ const _VC = "VariantConfiguration";
339
456
  const _VE = "ValidationException";
340
457
  const _VEF = "ValidationExceptionField";
341
458
  const _VEFL = "ValidationExceptionFieldList";
459
+ const _VL = "VariantList";
342
460
  const _VP = "ViewPort";
461
+ const _VR = "VariantResult";
462
+ const _VRL = "VariantResultList";
343
463
  const _WITT = "WorkloadIdentityTokenType";
344
464
  const _XABARSI = "X-Amzn-Bedrock-AgentCore-Runtime-Session-Id";
345
465
  const _XABARUI = "X-Amzn-Bedrock-AgentCore-Runtime-User-Id";
@@ -349,6 +469,7 @@ const _aC = "agentCard";
349
469
  const _aCB = "agentCoreBrowser";
350
470
  const _aCCI = "agentCoreCodeInterpreter";
351
471
  const _aCG = "agentCoreGateway";
472
+ const _aCb = "absoluteChange";
352
473
  const _aDE = "accessDeniedException";
353
474
  const _aI = "actorId";
354
475
  const _aIc = "accountId";
@@ -360,18 +481,32 @@ const _aS = "automationStream";
360
481
  const _aSU = "automationStreamUpdate";
361
482
  const _aSc = "actorSummaries";
362
483
  const _aSg = "agentSkills";
363
- const _aT = "accessToken";
484
+ const _aSv = "averageScore";
485
+ const _aT = "analysisTimestamp";
486
+ const _aTA = "abTestArn";
487
+ const _aTI = "abTestId";
488
+ const _aTb = "abTests";
489
+ const _aTc = "accessToken";
490
+ const _aTg = "agentTraces";
364
491
  const _aTl = "allowedTools";
365
492
  const _aU = "authorizationUrl";
366
493
  const _ac = "accept";
367
494
  const _act = "action";
368
495
  const _ar = "arguments";
369
496
  const _as = "assertions";
497
+ const _au = "audiences";
370
498
  const _b = "branch";
371
- const _bA = "browserArn";
499
+ const _bA = "bundleArn";
372
500
  const _bAa = "basicAuth";
501
+ const _bAr = "browserArn";
502
+ const _bE = "batchEvaluations";
503
+ const _bEA = "batchEvaluationArn";
504
+ const _bEI = "batchEvaluationId";
505
+ const _bEN = "batchEvaluationName";
373
506
  const _bI = "browserIdentifier";
374
507
  const _bMC = "bedrockModelConfig";
508
+ const _bV = "bundleVersion";
509
+ const _bVo = "booleanValue";
375
510
  const _ba = "baggage";
376
511
  const _bl = "blob";
377
512
  const _bo = "body";
@@ -380,6 +515,7 @@ const _buc = "bucket";
380
515
  const _by = "bypass";
381
516
  const _c = "client";
382
517
  const _cA = "createdAt";
518
+ const _cB = "configurationBundle";
383
519
  const _cBD = "contentBlockDelta";
384
520
  const _cBI = "contentBlockIndex";
385
521
  const _cBS = "contentBlockStart";
@@ -388,16 +524,22 @@ const _cC = "clickCount";
388
524
  const _cCl = "clearContext";
389
525
  const _cD = "contentDelta";
390
526
  const _cE = "conflictException";
527
+ const _cI = "confidenceInterval";
391
528
  const _cIA = "codeInterpreterArn";
392
529
  const _cII = "codeInterpreterIdentifier";
530
+ const _cL = "cloudwatchLogs";
393
531
  const _cP = "customParameters";
532
+ const _cRI = "currentRunId";
394
533
  const _cRIT = "cacheReadInputTokens";
395
- const _cS = "customState";
534
+ const _cS = "controlStats";
396
535
  const _cSo = "contentStart";
397
536
  const _cSon = "contentStop";
537
+ const _cSu = "customState";
398
538
  const _cT = "clientToken";
399
539
  const _cTo = "contentType";
540
+ const _cWC = "cloudWatchConfig";
400
541
  const _cWIT = "cacheWriteInputTokens";
542
+ const _cWL = "cloudWatchLogs";
401
543
  const _ce = "certificates";
402
544
  const _ch = "chunk";
403
545
  const _co = "content";
@@ -408,53 +550,68 @@ const _conf = "config";
408
550
  const _conv = "conversational";
409
551
  const _cr = "credentials";
410
552
  const _cu = "custom";
411
- const _d = "data";
553
+ const _d = "description";
412
554
  const _dP = "domainPatterns";
413
555
  const _dPi = "directoryPath";
414
556
  const _dRU = "defaultReturnUrl";
557
+ const _dSC = "dataSourceConfig";
415
558
  const _dT = "descriptorType";
559
+ const _dTV = "dateTimeValue";
560
+ const _dV = "doubleValue";
416
561
  const _dX = "deltaX";
417
562
  const _dY = "deltaY";
418
- const _de = "description";
419
- const _del = "delta";
563
+ const _da = "data";
564
+ const _de = "delta";
420
565
  const _des = "descriptors";
421
566
  const _e = "error";
422
567
  const _eA = "evaluatorArn";
423
568
  const _eC = "exitCode";
424
569
  const _eCr = "errorCode";
570
+ const _eCv = "evaluationConfig";
571
+ const _eD = "errorDetails";
425
572
  const _eF = "eventFilter";
426
573
  const _eI = "eventId";
427
574
  const _eIv = "evaluatorId";
428
575
  const _eIva = "evaluationInput";
429
576
  const _eJ = "extractionJob";
430
- const _eM = "errorMessage";
577
+ const _eM = "evaluatorMetrics";
578
+ const _eMr = "errorMessage";
431
579
  const _eMv = "eventMetadata";
580
+ const _eMva = "evaluationMetadata";
432
581
  const _eN = "evaluatorName";
582
+ const _eOC = "enableOnCreate";
433
583
  const _eP = "enterprisePolicies";
434
584
  const _ePx = "externalProxy";
435
585
  const _eR = "evaluationResults";
436
586
  const _eRI = "evaluationReferenceInputs";
437
587
  const _eRx = "expectedResponse";
438
- const _eT = "eventTimestamp";
439
- const _eTv = "evaluationTarget";
588
+ const _eS = "executionStatus";
589
+ const _eSv = "evaluatorSummaries";
590
+ const _eT = "endTime";
591
+ const _eTv = "eventTimestamp";
592
+ const _eTva = "evaluationTarget";
440
593
  const _eTx = "expectedTrajectory";
441
594
  const _eTxe = "executionTime";
442
595
  const _eX = "endX";
443
596
  const _eY = "endY";
444
- const _ev = "event";
445
- const _eve = "events";
597
+ const _ev = "evaluators";
598
+ const _eve = "event";
599
+ const _even = "events";
446
600
  const _ex = "explanation";
447
601
  const _ext = "extensions";
448
- const _f = "filter";
602
+ const _f = "filters";
449
603
  const _fA = "forceAuthentication";
604
+ const _fC = "filterConfig";
450
605
  const _fL = "fieldList";
451
606
  const _fR = "failedRecords";
452
607
  const _fRa = "failureReason";
453
- const _fi = "filters";
608
+ const _fi = "filter";
454
609
  const _fo = "format";
455
610
  const _gA = "gatewayArn";
611
+ const _gF = "gatewayFilter";
456
612
  const _gMC = "geminiModelConfig";
457
613
  const _gT = "grantType";
614
+ const _gTr = "groundTruth";
458
615
  const _h = "headers";
459
616
  const _hA = "harnessArn";
460
617
  const _hE = "httpError";
@@ -471,8 +628,10 @@ const _iPB = "includeParentBranches";
471
628
  const _iRIF = "ignoredReferenceInputFields";
472
629
  const _iS = "inputSchema";
473
630
  const _iSE = "internalServerException";
631
+ const _iSs = "isSignificant";
474
632
  const _iT = "idempotencyToken";
475
633
  const _iTn = "inputTokens";
634
+ const _in = "inline";
476
635
  const _it = "items";
477
636
  const _j = "jobs";
478
637
  const _jI = "jobId";
@@ -484,15 +643,21 @@ const _kS = "keyShortcut";
484
643
  const _kT = "keyType";
485
644
  const _ke = "keys";
486
645
  const _l = "location";
646
+ const _lGA = "logGroupArns";
647
+ const _lGN = "logGroupNames";
648
+ const _lGNo = "logGroupName";
487
649
  const _lM = "latencyMs";
650
+ const _lSN = "logStreamName";
488
651
  const _lUA = "lastUpdatedAt";
489
652
  const _lVS = "liveViewStream";
490
653
  const _la = "label";
491
654
  const _lan = "language";
492
655
  const _le = "left";
656
+ const _lo = "lower";
493
657
  const _m = "message";
494
658
  const _mC = "mouseClick";
495
659
  const _mD = "mouseDrag";
660
+ const _mDEA = "maxDurationExpiresAt";
496
661
  const _mF = "metadataFilters";
497
662
  const _mI = "memoryId";
498
663
  const _mIa = "maxIterations";
@@ -515,85 +680,120 @@ const _mT = "mimeType";
515
680
  const _mTa = "maxTokens";
516
681
  const _mV = "metadataValue";
517
682
  const _mc = "mcp";
518
- const _me = "metadata";
683
+ const _me = "mean";
519
684
  const _mes = "messages";
520
- const _met = "metrics";
685
+ const _met = "metadata";
686
+ const _metr = "metrics";
521
687
  const _mo = "model";
522
688
  const _n = "name";
689
+ const _nOSC = "numberOfSessionsCompleted";
690
+ const _nOSF = "numberOfSessionsFailed";
691
+ const _nOSI = "numberOfSessionsIgnored";
692
+ const _nOSIP = "numberOfSessionsInProgress";
523
693
  const _nP = "namespacePath";
524
694
  const _nT = "nextToken";
695
+ const _nV = "numberValue";
525
696
  const _na = "namespace";
526
697
  const _nam = "namespaces";
527
698
  const _no = "none";
528
699
  const _o = "operator";
529
700
  const _oA = "outboundAuth";
530
701
  const _oAMC = "openAiModelConfig";
702
+ const _oC = "outputConfig";
703
+ const _oECA = "onlineEvaluationConfigArn";
531
704
  const _oF = "oauth2Flow";
532
705
  const _oT = "outputTokens";
533
706
  const _oa = "oauth";
534
707
  const _p = "payload";
535
708
  const _pA = "providerArn";
536
709
  const _pC = "profileConfiguration";
710
+ const _pCe = "percentChange";
537
711
  const _pCr = "proxyConfiguration";
538
712
  const _pI = "profileIdentifier";
539
713
  const _pV = "protocolVersion";
714
+ const _pVOEC = "perVariantOnlineEvaluationConfig";
715
+ const _pVa = "pValue";
540
716
  const _pa = "path";
541
717
  const _pat = "paths";
542
718
  const _po = "port";
543
719
  const _pr = "presses";
544
720
  const _pre = "prefix";
545
721
  const _pro = "proxies";
722
+ const _prom = "prompt";
546
723
  const _q = "qualifier";
547
724
  const _r = "reason";
548
- const _rA = "registryArn";
549
- const _rAe = "recordArn";
550
- const _rC = "reasoningContent";
725
+ const _rA = "roleArn";
726
+ const _rAe = "recommendationArn";
727
+ const _rAec = "recordArn";
728
+ const _rAeg = "registryArn";
729
+ const _rC = "recommendationConfig";
551
730
  const _rCE = "runtimeClientError";
552
731
  const _rCPN = "resourceCredentialProviderName";
553
- const _rCe = "redactedContent";
732
+ const _rCe = "reasoningContent";
733
+ const _rCed = "redactedContent";
554
734
  const _rEI = "rootEventId";
555
- const _rI = "requestIdentifier";
556
- const _rIe = "recordId";
735
+ const _rI = "recommendationId";
736
+ const _rIe = "requestIdentifier";
737
+ const _rIec = "recordId";
557
738
  const _rIeg = "registryIds";
558
739
  const _rM = "remoteMcp";
559
740
  const _rNFE = "resourceNotFoundException";
560
741
  const _rORU = "resourceOauth2ReturnUrl";
561
- const _rR = "registryRecords";
742
+ const _rR = "recommendationResult";
743
+ const _rRe = "registryRecords";
744
+ const _rS = "recommendationSummaries";
562
745
  const _rSI = "runtimeSessionId";
746
+ const _rSP = "recommendedSystemPrompt";
563
747
  const _rT = "reasoningText";
748
+ const _rTD = "recommendedToolDescription";
564
749
  const _rUI = "runtimeUserId";
565
750
  const _re = "records";
566
751
  const _res = "resource";
752
+ const _reso = "resources";
567
753
  const _resp = "response";
568
- const _resu = "result";
754
+ const _resu = "results";
755
+ const _resul = "result";
569
756
  const _ri = "right";
570
757
  const _ro = "role";
571
- const _ru = "runtime";
758
+ const _ru = "rule";
759
+ const _run = "runtime";
572
760
  const _s = "smithy.ts.sdk.synthetic.com.amazonaws.bedrockagentcore";
573
761
  const _sA = "secretArn";
762
+ const _sAt = "startedAt";
763
+ const _sAto = "stoppedAt";
574
764
  const _sC = "structuredContent";
575
765
  const _sCe = "searchCriteria";
576
766
  const _sCp = "spanContext";
577
767
  const _sCt = "statusCode";
578
768
  const _sD = "skillDefinition";
579
769
  const _sE = "streamEndpoint";
770
+ const _sF = "statusFilter";
580
771
  const _sI = "sessionId";
772
+ const _sIe = "sessionIds";
581
773
  const _sIp = "spanId";
582
774
  const _sIpa = "spanIds";
583
775
  const _sIt = "strategyId";
776
+ const _sLV = "stringListValue";
584
777
  const _sM = "skillMd";
585
778
  const _sMe = "secretsManager";
586
- const _sN = "serverName";
779
+ const _sMes = "sessionMetadata";
780
+ const _sN = "serviceNames";
781
+ const _sNe = "serverName";
587
782
  const _sP = "systemPrompt";
783
+ const _sPJP = "systemPromptJsonPath";
784
+ const _sPRC = "systemPromptRecommendationConfig";
785
+ const _sPRR = "systemPromptRecommendationResult";
588
786
  const _sQ = "searchQuery";
589
787
  const _sQEE = "serviceQuotaExceededException";
590
788
  const _sR = "successfulRecords";
591
789
  const _sRA = "sessionReplayArtifact";
592
790
  const _sRt = "stopReason";
593
791
  const _sS = "streamStatus";
792
+ const _sSa = "sampleSize";
594
793
  const _sSe = "sessionStatus";
595
794
  const _sSes = "sessionSummaries";
596
795
  const _sSess = "sessionSpans";
796
+ const _sT = "startTime";
597
797
  const _sTS = "sessionTimeoutSeconds";
598
798
  const _sU = "sessionUri";
599
799
  const _sUt = "streamUpdate";
@@ -613,27 +813,41 @@ const _sk = "skills";
613
813
  const _st = "streaming";
614
814
  const _sta = "status";
615
815
  const _star = "start";
816
+ const _stat = "statistics";
616
817
  const _std = "stdout";
617
818
  const _stde = "stderr";
618
819
  const _str = "streams";
619
820
  const _stre = "stream";
620
821
  const _t = "type";
621
- const _tE = "throttlingException";
822
+ const _tD = "toolDescription";
823
+ const _tDJP = "toolDescriptionJsonPath";
824
+ const _tDRC = "toolDescriptionRecommendationConfig";
825
+ const _tDRR = "toolDescriptionRecommendationResult";
826
+ const _tDT = "toolDescriptionText";
827
+ const _tE = "totalEvaluated";
828
+ const _tEh = "throttlingException";
829
+ const _tF = "totalFailed";
622
830
  const _tI = "traceId";
623
831
  const _tIa = "taskId";
624
832
  const _tIr = "traceIds";
625
833
  const _tK = "topK";
626
- const _tN = "toolNames";
627
- const _tP = "topP";
834
+ const _tN = "toolName";
835
+ const _tNOS = "totalNumberOfSessions";
836
+ const _tNo = "toolNames";
837
+ const _tP = "targetPaths";
838
+ const _tPo = "topP";
628
839
  const _tPr = "traceParent";
629
- const _tR = "toolResult";
840
+ const _tR = "timeRange";
841
+ const _tRo = "toolResult";
630
842
  const _tS = "traceState";
843
+ const _tSI = "testScenarioId";
631
844
  const _tSa = "taskStatus";
632
845
  const _tSi = "timeoutSeconds";
633
846
  const _tT = "totalTokens";
634
847
  const _tU = "tokenUsage";
635
848
  const _tUI = "toolUseId";
636
849
  const _tUo = "toolUse";
850
+ const _ta = "target";
637
851
  const _te = "text";
638
852
  const _tem = "temperature";
639
853
  const _ti = "timeout";
@@ -641,22 +855,29 @@ const _tim = "timestamp";
641
855
  const _to = "tools";
642
856
  const _tr = "traceparent";
643
857
  const _tra = "tracestate";
644
- const _u = "uri";
858
+ const _tu = "turns";
859
+ const _u = "upper";
645
860
  const _uA = "updatedAt";
646
861
  const _uI = "userIdentifier";
647
862
  const _uIs = "userId";
648
863
  const _uT = "userToken";
649
- const _ur = "url";
864
+ const _ur = "uri";
865
+ const _url = "url";
650
866
  const _us = "usage";
651
867
  const _v = "value";
868
+ const _vC = "variantConfiguration";
652
869
  const _vE = "validationException";
653
870
  const _vI = "versionId";
871
+ const _vN = "variantName";
654
872
  const _vP = "viewPort";
873
+ const _vR = "variantResults";
874
+ const _va = "variants";
655
875
  const _ve = "version";
656
- const _w = "width";
876
+ const _w = "weight";
657
877
  const _wAT = "workloadAccessToken";
658
878
  const _wIT = "workloadIdentityToken";
659
879
  const _wN = "workloadName";
880
+ const _wi = "width";
660
881
  const _x = "x";
661
882
  const _xabsi = "x-amzn-browser-session-id";
662
883
  const _xacisi = "x-amzn-code-interpreter-session-id";
@@ -773,6 +994,8 @@ var SensitiveJson = [0, n0, _SJ, 8, 15];
773
994
  var SensitiveString = [0, n0, _SS, 8, 0];
774
995
  var SensitiveText = [0, n0, _ST, 8, 0];
775
996
  var State = [0, n0, _S, 8, 0];
997
+ var SystemPromptText = [0, n0, _SPT, 8, 0];
998
+ var ToolDescriptionText = [0, n0, _TDT, 8, 0];
776
999
  var UserTokenType = [0, n0, _UTT, 8, 0];
777
1000
  var WorkloadIdentityTokenType = [0, n0, _WITT, 8, 0];
778
1001
  exports.A2aDescriptor$ = [3, n0, _AD,
@@ -780,6 +1003,16 @@ exports.A2aDescriptor$ = [3, n0, _AD,
780
1003
  [_aC],
781
1004
  [() => exports.AgentCardDefinition$], 1
782
1005
  ];
1006
+ exports.ABTestResults$ = [3, n0, _ABTR,
1007
+ 0,
1008
+ [_eM, _aT],
1009
+ [() => EvaluatorMetricList, 4], 1
1010
+ ];
1011
+ exports.ABTestSummary$ = [3, n0, _ABTS,
1012
+ 0,
1013
+ [_aTI, _aTA, _n, _sta, _eS, _cA, _uA, _d, _gA],
1014
+ [0, 0, 0, 0, 0, 4, 4, 0, 0], 7
1015
+ ];
783
1016
  exports.ActorSummary$ = [3, n0, _AS,
784
1017
  0,
785
1018
  [_aI],
@@ -830,6 +1063,11 @@ exports.BatchDeleteMemoryRecordsOutput$ = [3, n0, _BDMRO,
830
1063
  [_sR, _fR],
831
1064
  [() => MemoryRecordsOutputList, () => MemoryRecordsOutputList], 2
832
1065
  ];
1066
+ exports.BatchEvaluationSummary$ = [3, n0, _BES,
1067
+ 0,
1068
+ [_bEI, _bEA, _bEN, _sta, _cA, _d, _ev, _eR, _eD, _uA],
1069
+ [0, 0, 0, 0, 5, 0, () => EvaluatorList, () => exports.EvaluationJobResults$, 64 | 0, 5], 5
1070
+ ];
833
1071
  exports.BatchUpdateMemoryRecordsInput$ = [3, n0, _BUMRI,
834
1072
  0,
835
1073
  [_mI, _re],
@@ -880,6 +1118,36 @@ exports.Certificate$ = [3, n0, _C,
880
1118
  [_l],
881
1119
  [() => exports.CertificateLocation$], 1
882
1120
  ];
1121
+ exports.CloudWatchFilterConfig$ = [3, n0, _CWFC,
1122
+ 0,
1123
+ [_sIe, _tR],
1124
+ [64 | 0, () => exports.SessionFilterConfig$]
1125
+ ];
1126
+ exports.CloudWatchLogsFilter$ = [3, n0, _CWLF,
1127
+ 0,
1128
+ [_k, _o, _v],
1129
+ [0, 0, () => exports.FilterValue$], 3
1130
+ ];
1131
+ exports.CloudWatchLogsRule$ = [3, n0, _CWLR,
1132
+ 0,
1133
+ [_f],
1134
+ [() => CloudWatchLogsFilterList]
1135
+ ];
1136
+ exports.CloudWatchLogsSource$ = [3, n0, _CWLS,
1137
+ 0,
1138
+ [_sN, _lGN, _fC],
1139
+ [64 | 0, 64 | 0, () => exports.CloudWatchFilterConfig$], 2
1140
+ ];
1141
+ exports.CloudWatchLogsTraceConfig$ = [3, n0, _CWLTC,
1142
+ 0,
1143
+ [_lGA, _sN, _sT, _eT, _ru],
1144
+ [64 | 0, 64 | 0, 5, 5, () => exports.CloudWatchLogsRule$], 4
1145
+ ];
1146
+ exports.CloudWatchOutputConfig$ = [3, n0, _CWOC,
1147
+ 0,
1148
+ [_lGNo, _lSN],
1149
+ [0, 0], 2
1150
+ ];
883
1151
  exports.CodeInterpreterResult$ = [3, n0, _CIR,
884
1152
  0,
885
1153
  [_co, _sC, _iE],
@@ -900,9 +1168,24 @@ exports.CompleteResourceTokenAuthResponse$ = [3, n0, _CRTARo,
900
1168
  [],
901
1169
  []
902
1170
  ];
1171
+ exports.ConfidenceInterval$ = [3, n0, _CI,
1172
+ 0,
1173
+ [_lo, _u],
1174
+ [1, 1]
1175
+ ];
1176
+ exports.ConfigurationBundleRef$ = [3, n0, _CBR,
1177
+ 0,
1178
+ [_bA, _bV],
1179
+ [0, 0], 2
1180
+ ];
1181
+ exports.ConfigurationBundleToolEntry$ = [3, n0, _CBTE,
1182
+ 0,
1183
+ [_tN, _tDJP],
1184
+ [0, 0], 2
1185
+ ];
903
1186
  exports.ContentBlock$ = [3, n0, _CB,
904
1187
  0,
905
- [_t, _te, _d, _mT, _u, _n, _de, _si, _res],
1188
+ [_t, _te, _da, _mT, _ur, _n, _d, _si, _res],
906
1189
  [0, 0, 21, 0, 0, 0, 0, 1, () => exports.ResourceContent$], 1
907
1190
  ];
908
1191
  exports.ContentDeltaEvent$ = [3, n0, _CDE,
@@ -920,19 +1203,34 @@ exports.ContentStopEvent$ = [3, n0, _CSEo,
920
1203
  [_eC, _sta],
921
1204
  [1, 0], 2
922
1205
  ];
1206
+ exports.ControlStats$ = [3, n0, _CS,
1207
+ 0,
1208
+ [_vN, _sSa, _me],
1209
+ [0, 1, 1], 3
1210
+ ];
923
1211
  exports.Conversational$ = [3, n0, _Co,
924
1212
  0,
925
1213
  [_co, _ro],
926
1214
  [[() => exports.Content$, 0], 0], 2
927
1215
  ];
1216
+ exports.CreateABTestRequest$ = [3, n0, _CABTR,
1217
+ 0,
1218
+ [_n, _gA, _va, _eCv, _rA, _d, _gF, _eOC, _cT],
1219
+ [0, 0, () => VariantList, () => exports.ABTestEvaluationConfig$, 0, 0, () => exports.GatewayFilter$, 2, [0, 4]], 5
1220
+ ];
1221
+ exports.CreateABTestResponse$ = [3, n0, _CABTRr,
1222
+ 0,
1223
+ [_aTI, _aTA, _sta, _eS, _cA, _n],
1224
+ [0, 0, 0, 0, 4, 0], 5
1225
+ ];
928
1226
  exports.CreateEventInput$ = [3, n0, _CEI,
929
1227
  0,
930
- [_mI, _aI, _eT, _p, _sI, _b, _cT, _me],
1228
+ [_mI, _aI, _eTv, _p, _sI, _b, _cT, _met],
931
1229
  [[0, 1], 0, 4, [() => PayloadTypeList, 0], 0, () => exports.Branch$, [0, 4], () => MetadataMap], 4
932
1230
  ];
933
1231
  exports.CreateEventOutput$ = [3, n0, _CEO,
934
1232
  0,
935
- [_ev],
1233
+ [_eve],
936
1234
  [[() => exports.Event$, 0]], 1
937
1235
  ];
938
1236
  exports.CustomDescriptor$ = [3, n0, _CD,
@@ -940,6 +1238,26 @@ exports.CustomDescriptor$ = [3, n0, _CD,
940
1238
  [_iC],
941
1239
  [0]
942
1240
  ];
1241
+ exports.DeleteABTestRequest$ = [3, n0, _DABTR,
1242
+ 0,
1243
+ [_aTI],
1244
+ [[0, 1]], 1
1245
+ ];
1246
+ exports.DeleteABTestResponse$ = [3, n0, _DABTRe,
1247
+ 0,
1248
+ [_aTI, _aTA, _sta],
1249
+ [0, 0, 0], 3
1250
+ ];
1251
+ exports.DeleteBatchEvaluationRequest$ = [3, n0, _DBER,
1252
+ 0,
1253
+ [_bEI],
1254
+ [[0, 1]], 1
1255
+ ];
1256
+ exports.DeleteBatchEvaluationResponse$ = [3, n0, _DBERe,
1257
+ 0,
1258
+ [_bEI, _bEA, _sta],
1259
+ [0, 0, 0], 3
1260
+ ];
943
1261
  exports.DeleteEventInput$ = [3, n0, _DEI,
944
1262
  0,
945
1263
  [_mI, _sI, _eI, _aI],
@@ -960,6 +1278,16 @@ exports.DeleteMemoryRecordOutput$ = [3, n0, _DMRO,
960
1278
  [_mRI],
961
1279
  [0], 1
962
1280
  ];
1281
+ exports.DeleteRecommendationRequest$ = [3, n0, _DRR,
1282
+ 0,
1283
+ [_rI],
1284
+ [[0, 1]], 1
1285
+ ];
1286
+ exports.DeleteRecommendationResponse$ = [3, n0, _DRRe,
1287
+ 0,
1288
+ [_rI, _sta],
1289
+ [0, 0], 2
1290
+ ];
963
1291
  exports.Descriptors$ = [3, n0, _De,
964
1292
  0,
965
1293
  [_mc, _a, _cu, _aSg],
@@ -967,7 +1295,7 @@ exports.Descriptors$ = [3, n0, _De,
967
1295
  ];
968
1296
  exports.EvaluateRequest$ = [3, n0, _ER,
969
1297
  0,
970
- [_eIv, _eIva, _eTv, _eRI],
1298
+ [_eIv, _eIva, _eTva, _eRI],
971
1299
  [[0, 1], [() => exports.EvaluationInput$, 0], () => exports.EvaluationTarget$, [() => EvaluationReferenceInputs, 0]], 2
972
1300
  ];
973
1301
  exports.EvaluateResponse$ = [3, n0, _ERv,
@@ -977,9 +1305,14 @@ exports.EvaluateResponse$ = [3, n0, _ERv,
977
1305
  ];
978
1306
  exports.EvaluationExpectedTrajectory$ = [3, n0, _EET,
979
1307
  0,
980
- [_tN],
1308
+ [_tNo],
981
1309
  [64 | 0]
982
1310
  ];
1311
+ exports.EvaluationJobResults$ = [3, n0, _EJR,
1312
+ 0,
1313
+ [_nOSC, _nOSIP, _nOSF, _tNOS, _nOSI, _eSv],
1314
+ [1, 1, 1, 1, 1, () => EvaluatorSummaryList]
1315
+ ];
983
1316
  exports.EvaluationReferenceInput$ = [3, n0, _ERI,
984
1317
  0,
985
1318
  [_con, _eRx, _as, _eTx],
@@ -987,12 +1320,32 @@ exports.EvaluationReferenceInput$ = [3, n0, _ERI,
987
1320
  ];
988
1321
  exports.EvaluationResultContent$ = [3, n0, _ERC,
989
1322
  0,
990
- [_eA, _eIv, _eN, _con, _ex, _v, _la, _tU, _eM, _eCr, _iRIF],
1323
+ [_eA, _eIv, _eN, _con, _ex, _v, _la, _tU, _eMr, _eCr, _iRIF],
991
1324
  [0, 0, 0, () => exports.Context$, [() => EvaluationExplanation, 0], 1, 0, () => exports.TokenUsage$, 0, 0, 64 | 0], 4
992
1325
  ];
993
- exports.Event$ = [3, n0, _E,
1326
+ exports.Evaluator$ = [3, n0, _E,
1327
+ 0,
1328
+ [_eIv],
1329
+ [0], 1
1330
+ ];
1331
+ exports.EvaluatorMetric$ = [3, n0, _EM,
1332
+ 0,
1333
+ [_eA, _cS, _vR],
1334
+ [0, () => exports.ControlStats$, () => VariantResultList], 3
1335
+ ];
1336
+ exports.EvaluatorStatistics$ = [3, n0, _ES,
1337
+ 0,
1338
+ [_aSv],
1339
+ [1]
1340
+ ];
1341
+ exports.EvaluatorSummary$ = [3, n0, _ESv,
994
1342
  0,
995
- [_mI, _aI, _sI, _eI, _eT, _p, _b, _me],
1343
+ [_eIv, _stat, _tE, _tF],
1344
+ [0, () => exports.EvaluatorStatistics$, 1, 1]
1345
+ ];
1346
+ exports.Event$ = [3, n0, _Ev,
1347
+ 0,
1348
+ [_mI, _aI, _sI, _eI, _eTv, _p, _b, _met],
996
1349
  [0, 0, 0, 0, 4, [() => PayloadTypeList, 0], () => exports.Branch$, () => MetadataMap], 6
997
1350
  ];
998
1351
  exports.EventMetadataFilterExpression$ = [3, n0, _EMFE,
@@ -1025,6 +1378,21 @@ exports.FilterInput$ = [3, n0, _FI,
1025
1378
  [_b, _eMv],
1026
1379
  [() => exports.BranchFilter$, () => EventMetadataFilterList]
1027
1380
  ];
1381
+ exports.GatewayFilter$ = [3, n0, _GF,
1382
+ 0,
1383
+ [_tP],
1384
+ [64 | 0]
1385
+ ];
1386
+ exports.GetABTestRequest$ = [3, n0, _GABTR,
1387
+ 0,
1388
+ [_aTI],
1389
+ [[0, 1]], 1
1390
+ ];
1391
+ exports.GetABTestResponse$ = [3, n0, _GABTRe,
1392
+ 0,
1393
+ [_aTI, _aTA, _n, _sta, _eS, _gA, _va, _eCv, _cA, _uA, _d, _gF, _rA, _cRI, _eD, _sAt, _sAto, _mDEA, _resu],
1394
+ [0, 0, 0, 0, 0, 0, () => VariantList, () => exports.ABTestEvaluationConfig$, 4, 4, 0, () => exports.GatewayFilter$, 0, 0, 64 | 0, 4, 4, 4, () => exports.ABTestResults$], 10
1395
+ ];
1028
1396
  exports.GetAgentCardRequest$ = [3, n0, _GACR,
1029
1397
  0,
1030
1398
  [_aRA, _rSI, _q],
@@ -1035,6 +1403,16 @@ exports.GetAgentCardResponse$ = [3, n0, _GACRe,
1035
1403
  [_aC, _rSI, _sCt],
1036
1404
  [[15, 16], [0, { [_hH]: _XABARSI }], [1, 32]], 1
1037
1405
  ];
1406
+ exports.GetBatchEvaluationRequest$ = [3, n0, _GBER,
1407
+ 0,
1408
+ [_bEI],
1409
+ [[0, 1]], 1
1410
+ ];
1411
+ exports.GetBatchEvaluationResponse$ = [3, n0, _GBERe,
1412
+ 0,
1413
+ [_bEI, _bEA, _bEN, _sta, _cA, _ev, _dSC, _oC, _eR, _eD, _d, _uA],
1414
+ [0, 0, 0, 0, 5, () => EvaluatorList, () => exports.DataSourceConfig$, () => exports.OutputConfig$, () => exports.EvaluationJobResults$, 64 | 0, 0, 5], 5
1415
+ ];
1038
1416
  exports.GetBrowserSessionRequest$ = [3, n0, _GBSR,
1039
1417
  0,
1040
1418
  [_bI, _sI],
@@ -1062,7 +1440,7 @@ exports.GetEventInput$ = [3, n0, _GEI,
1062
1440
  ];
1063
1441
  exports.GetEventOutput$ = [3, n0, _GEO,
1064
1442
  0,
1065
- [_ev],
1443
+ [_eve],
1066
1444
  [[() => exports.Event$, 0]], 1
1067
1445
  ];
1068
1446
  exports.GetMemoryRecordInput$ = [3, n0, _GMRI,
@@ -1075,6 +1453,16 @@ exports.GetMemoryRecordOutput$ = [3, n0, _GMRO,
1075
1453
  [_mR],
1076
1454
  [[() => exports.MemoryRecord$, 0]], 1
1077
1455
  ];
1456
+ exports.GetRecommendationRequest$ = [3, n0, _GRR,
1457
+ 0,
1458
+ [_rI],
1459
+ [[0, 1]], 1
1460
+ ];
1461
+ exports.GetRecommendationResponse$ = [3, n0, _GRRe,
1462
+ 0,
1463
+ [_rI, _rAe, _n, _t, _rC, _sta, _cA, _uA, _d, _rR],
1464
+ [0, 0, 0, 0, [() => exports.RecommendationConfig$, 0], 0, 5, 5, 0, [() => exports.RecommendationResult$, 0]], 8
1465
+ ];
1078
1466
  exports.GetResourceApiKeyRequest$ = [3, n0, _GRAKR,
1079
1467
  0,
1080
1468
  [_wIT, _rCPN],
@@ -1087,12 +1475,12 @@ exports.GetResourceApiKeyResponse$ = [3, n0, _GRAKRe,
1087
1475
  ];
1088
1476
  exports.GetResourceOauth2TokenRequest$ = [3, n0, _GROTR,
1089
1477
  0,
1090
- [_wIT, _rCPN, _sc, _oF, _sU, _rORU, _fA, _cP, _cS],
1091
- [[() => WorkloadIdentityTokenType, 0], 0, 64 | 0, 0, 0, 0, 2, [() => CustomRequestParametersType, 0], [() => State, 0]], 4
1478
+ [_wIT, _rCPN, _sc, _oF, _sU, _rORU, _fA, _cP, _cSu, _reso, _au],
1479
+ [[() => WorkloadIdentityTokenType, 0], 0, 64 | 0, 0, 0, 0, 2, [() => CustomRequestParametersType, 0], [() => State, 0], 64 | 0, 64 | 0], 4
1092
1480
  ];
1093
1481
  exports.GetResourceOauth2TokenResponse$ = [3, n0, _GROTRe,
1094
1482
  0,
1095
- [_aU, _aT, _sU, _sSe],
1483
+ [_aU, _aTc, _sU, _sSe],
1096
1484
  [[() => AuthorizationUrlType, 0], [() => AccessTokenType, 0], 0, 0]
1097
1485
  ];
1098
1486
  exports.GetWorkloadAccessTokenForJWTRequest$ = [3, n0, _GWATFJWTR,
@@ -1125,9 +1513,14 @@ exports.GetWorkloadAccessTokenResponse$ = [3, n0, _GWATRe,
1125
1513
  [_wAT],
1126
1514
  [[() => WorkloadIdentityTokenType, 0]], 1
1127
1515
  ];
1516
+ exports.GroundTruthTurn$ = [3, n0, _GTT,
1517
+ 0,
1518
+ [_i, _eRx],
1519
+ [() => exports.GroundTruthTurnInput$, () => exports.EvaluationContent$]
1520
+ ];
1128
1521
  exports.HarnessAgentCoreBrowserConfig$ = [3, n0, _HACBC,
1129
1522
  0,
1130
- [_bA],
1523
+ [_bAr],
1131
1524
  [0]
1132
1525
  ];
1133
1526
  exports.HarnessAgentCoreCodeInterpreterConfig$ = [3, n0, _HACCIC,
@@ -1142,12 +1535,12 @@ exports.HarnessAgentCoreGatewayConfig$ = [3, n0, _HACGC,
1142
1535
  ];
1143
1536
  exports.HarnessBedrockModelConfig$ = [3, n0, _HBMC,
1144
1537
  0,
1145
- [_mIo, _mTa, _tem, _tP],
1538
+ [_mIo, _mTa, _tem, _tPo],
1146
1539
  [0, 1, 1, 1], 1
1147
1540
  ];
1148
1541
  exports.HarnessContentBlockDeltaEvent$ = [3, n0, _HCBDE,
1149
1542
  0,
1150
- [_cBI, _del],
1543
+ [_cBI, _de],
1151
1544
  [1, [() => exports.HarnessContentBlockDelta$, 0]], 2
1152
1545
  ];
1153
1546
  exports.HarnessContentBlockStartEvent$ = [3, n0, _HCBSE,
@@ -1162,12 +1555,12 @@ exports.HarnessContentBlockStopEvent$ = [3, n0, _HCBSEa,
1162
1555
  ];
1163
1556
  exports.HarnessGeminiModelConfig$ = [3, n0, _HGMC,
1164
1557
  0,
1165
- [_mIo, _aKA, _mTa, _tem, _tP, _tK],
1558
+ [_mIo, _aKA, _mTa, _tem, _tPo, _tK],
1166
1559
  [0, 0, 1, 1, 1, 1], 2
1167
1560
  ];
1168
1561
  exports.HarnessInlineFunctionConfig$ = [3, n0, _HIFC,
1169
1562
  0,
1170
- [_de, _iS],
1563
+ [_d, _iS],
1171
1564
  [[() => HarnessInlineFunctionDescription, 0], [() => SensitiveJson, 0]], 2
1172
1565
  ];
1173
1566
  exports.HarnessMessage$ = [3, n0, _HM,
@@ -1187,12 +1580,12 @@ exports.HarnessMessageStopEvent$ = [3, n0, _HMSEa,
1187
1580
  ];
1188
1581
  exports.HarnessMetadataEvent$ = [3, n0, _HME,
1189
1582
  0,
1190
- [_us, _met],
1583
+ [_us, _metr],
1191
1584
  [() => exports.HarnessTokenUsage$, () => exports.HarnessStreamMetrics$], 2
1192
1585
  ];
1193
1586
  exports.HarnessOpenAiModelConfig$ = [3, n0, _HOAMC,
1194
1587
  0,
1195
- [_mIo, _aKA, _mTa, _tem, _tP],
1588
+ [_mIo, _aKA, _mTa, _tem, _tPo],
1196
1589
  [0, 0, 1, 1, 1], 2
1197
1590
  ];
1198
1591
  exports.HarnessReasoningTextBlock$ = [3, n0, _HRTB,
@@ -1202,7 +1595,7 @@ exports.HarnessReasoningTextBlock$ = [3, n0, _HRTB,
1202
1595
  ];
1203
1596
  exports.HarnessRemoteMcpConfig$ = [3, n0, _HRMC,
1204
1597
  0,
1205
- [_ur, _h],
1598
+ [_url, _h],
1206
1599
  [[() => HarnessRemoteMcpUrl, 0], [() => HttpHeadersMap, 0]], 1
1207
1600
  ];
1208
1601
  exports.HarnessStreamMetrics$ = [3, n0, _HSM,
@@ -1232,7 +1625,7 @@ exports.HarnessToolResultBlockStart$ = [3, n0, _HTRBS,
1232
1625
  ];
1233
1626
  exports.HarnessToolUseBlock$ = [3, n0, _HTUB,
1234
1627
  0,
1235
- [_n, _tUI, _i, _t, _sN],
1628
+ [_n, _tUI, _i, _t, _sNe],
1236
1629
  [0, 0, [() => SensitiveJson, 0], 0, 0], 3
1237
1630
  ];
1238
1631
  exports.HarnessToolUseBlockDelta$ = [3, n0, _HTUBD,
@@ -1242,9 +1635,14 @@ exports.HarnessToolUseBlockDelta$ = [3, n0, _HTUBD,
1242
1635
  ];
1243
1636
  exports.HarnessToolUseBlockStart$ = [3, n0, _HTUBS,
1244
1637
  0,
1245
- [_tUI, _n, _t, _sN],
1638
+ [_tUI, _n, _t, _sNe],
1246
1639
  [0, 0, 0, 0], 2
1247
1640
  ];
1641
+ exports.InlineGroundTruth$ = [3, n0, _IGT,
1642
+ 0,
1643
+ [_as, _eTx, _tu],
1644
+ [() => EvaluationContentList, () => exports.EvaluationExpectedTrajectory$, () => GroundTruthTurnList]
1645
+ ];
1248
1646
  exports.InputContentBlock$ = [3, n0, _ICB,
1249
1647
  0,
1250
1648
  [_pa, _te, _bl],
@@ -1282,7 +1680,7 @@ exports.InvokeBrowserRequest$ = [3, n0, _IBR,
1282
1680
  ];
1283
1681
  exports.InvokeBrowserResponse$ = [3, n0, _IBRn,
1284
1682
  0,
1285
- [_resu, _sI],
1683
+ [_resul, _sI],
1286
1684
  [() => exports.BrowserActionResult$, [0, { [_hH]: _xabsi }]], 2
1287
1685
  ];
1288
1686
  exports.InvokeCodeInterpreterRequest$ = [3, n0, _ICIR,
@@ -1335,6 +1733,16 @@ exports.KeyTypeResult$ = [3, n0, _KTR,
1335
1733
  [_sta, _e],
1336
1734
  [0, 0], 1
1337
1735
  ];
1736
+ exports.ListABTestsRequest$ = [3, n0, _LABTR,
1737
+ 0,
1738
+ [_mRa, _nT],
1739
+ [[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
1740
+ ];
1741
+ exports.ListABTestsResponse$ = [3, n0, _LABTRi,
1742
+ 0,
1743
+ [_aTb, _nT],
1744
+ [() => ABTestSummaryList, 0], 1
1745
+ ];
1338
1746
  exports.ListActorsInput$ = [3, n0, _LAI,
1339
1747
  0,
1340
1748
  [_mI, _mRa, _nT],
@@ -1345,6 +1753,16 @@ exports.ListActorsOutput$ = [3, n0, _LAO,
1345
1753
  [_aSc, _nT],
1346
1754
  [() => ActorSummaryList, 0], 1
1347
1755
  ];
1756
+ exports.ListBatchEvaluationsRequest$ = [3, n0, _LBER,
1757
+ 0,
1758
+ [_mRa, _nT],
1759
+ [[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
1760
+ ];
1761
+ exports.ListBatchEvaluationsResponse$ = [3, n0, _LBERi,
1762
+ 0,
1763
+ [_bE, _nT],
1764
+ [() => BatchEvaluationSummaryList, 0], 1
1765
+ ];
1348
1766
  exports.ListBrowserSessionsRequest$ = [3, n0, _LBSR,
1349
1767
  0,
1350
1768
  [_bI, _mRa, _nT, _sta],
@@ -1367,17 +1785,17 @@ exports.ListCodeInterpreterSessionsResponse$ = [3, n0, _LCISRi,
1367
1785
  ];
1368
1786
  exports.ListEventsInput$ = [3, n0, _LEI,
1369
1787
  0,
1370
- [_mI, _sI, _aI, _iP, _f, _mRa, _nT],
1788
+ [_mI, _sI, _aI, _iP, _fi, _mRa, _nT],
1371
1789
  [[0, 1], [0, 1], [0, 1], 2, () => exports.FilterInput$, 1, 0], 3
1372
1790
  ];
1373
1791
  exports.ListEventsOutput$ = [3, n0, _LEO,
1374
1792
  0,
1375
- [_eve, _nT],
1793
+ [_even, _nT],
1376
1794
  [[() => EventList, 0], 0], 1
1377
1795
  ];
1378
1796
  exports.ListMemoryExtractionJobsInput$ = [3, n0, _LMEJI,
1379
1797
  0,
1380
- [_mI, _mRa, _f, _nT],
1798
+ [_mI, _mRa, _fi, _nT],
1381
1799
  [[0, 1], 1, () => exports.ExtractionJobFilterInput$, 0], 1
1382
1800
  ];
1383
1801
  exports.ListMemoryExtractionJobsOutput$ = [3, n0, _LMEJO,
@@ -1387,17 +1805,27 @@ exports.ListMemoryExtractionJobsOutput$ = [3, n0, _LMEJO,
1387
1805
  ];
1388
1806
  exports.ListMemoryRecordsInput$ = [3, n0, _LMRI,
1389
1807
  0,
1390
- [_mI, _na, _nP, _mSIe, _mRa, _nT],
1391
- [[0, 1], 0, 0, 0, 1, 0], 1
1808
+ [_mI, _na, _nP, _mSIe, _mRa, _nT, _mF],
1809
+ [[0, 1], 0, 0, 0, 1, 0, () => MemoryMetadataFilterList], 1
1392
1810
  ];
1393
1811
  exports.ListMemoryRecordsOutput$ = [3, n0, _LMRO,
1394
1812
  0,
1395
1813
  [_mRS, _nT],
1396
1814
  [[() => MemoryRecordSummaryList, 0], 0], 1
1397
1815
  ];
1816
+ exports.ListRecommendationsRequest$ = [3, n0, _LRR,
1817
+ 0,
1818
+ [_mRa, _nT, _sF],
1819
+ [[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _sta }]]
1820
+ ];
1821
+ exports.ListRecommendationsResponse$ = [3, n0, _LRRi,
1822
+ 0,
1823
+ [_rS, _nT],
1824
+ [() => RecommendationSummaryList, 0], 1
1825
+ ];
1398
1826
  exports.ListSessionsInput$ = [3, n0, _LSI,
1399
1827
  0,
1400
- [_mI, _aI, _mRa, _nT, _f],
1828
+ [_mI, _aI, _mRa, _nT, _fi],
1401
1829
  [[0, 1], [0, 1], 1, 0, () => exports.SessionFilter$], 2
1402
1830
  ];
1403
1831
  exports.ListSessionsOutput$ = [3, n0, _LSO,
@@ -1418,17 +1846,17 @@ exports.McpDescriptor$ = [3, n0, _MD,
1418
1846
  exports.MemoryMetadataFilterExpression$ = [3, n0, _MMFE,
1419
1847
  0,
1420
1848
  [_le, _o, _ri],
1421
- [() => exports.LeftExpression$, 0, () => exports.RightExpression$], 2
1849
+ [() => exports.MemoryRecordLeftExpression$, 0, () => exports.MemoryRecordRightExpression$], 2
1422
1850
  ];
1423
1851
  exports.MemoryRecord$ = [3, n0, _MR,
1424
1852
  0,
1425
- [_mRI, _co, _mSIe, _nam, _cA, _me],
1426
- [0, [() => exports.MemoryContent$, 0], 0, 64 | 0, 4, () => MetadataMap], 5
1853
+ [_mRI, _co, _mSIe, _nam, _cA, _met],
1854
+ [0, [() => exports.MemoryContent$, 0], 0, 64 | 0, 4, () => MemoryRecordMetadataMap], 5
1427
1855
  ];
1428
1856
  exports.MemoryRecordCreateInput$ = [3, n0, _MRCI,
1429
1857
  0,
1430
- [_rI, _nam, _co, _tim, _mSIe],
1431
- [0, 64 | 0, [() => exports.MemoryContent$, 0], 4, 0], 4
1858
+ [_rIe, _nam, _co, _tim, _mSIe, _met],
1859
+ [0, 64 | 0, [() => exports.MemoryContent$, 0], 4, 0, () => MemoryRecordMetadataMap], 4
1432
1860
  ];
1433
1861
  exports.MemoryRecordDeleteInput$ = [3, n0, _MRDI,
1434
1862
  0,
@@ -1437,18 +1865,18 @@ exports.MemoryRecordDeleteInput$ = [3, n0, _MRDI,
1437
1865
  ];
1438
1866
  exports.MemoryRecordOutput$ = [3, n0, _MRO,
1439
1867
  0,
1440
- [_mRI, _sta, _rI, _eCr, _eM],
1868
+ [_mRI, _sta, _rIe, _eCr, _eMr],
1441
1869
  [0, 0, 0, 1, 0], 2
1442
1870
  ];
1443
1871
  exports.MemoryRecordSummary$ = [3, n0, _MRS,
1444
1872
  0,
1445
- [_mRI, _co, _mSIe, _nam, _cA, _sco, _me],
1446
- [0, [() => exports.MemoryContent$, 0], 0, 64 | 0, 4, 1, () => MetadataMap], 5
1873
+ [_mRI, _co, _mSIe, _nam, _cA, _sco, _met],
1874
+ [0, [() => exports.MemoryContent$, 0], 0, 64 | 0, 4, 1, () => MemoryRecordMetadataMap], 5
1447
1875
  ];
1448
1876
  exports.MemoryRecordUpdateInput$ = [3, n0, _MRUI,
1449
1877
  0,
1450
- [_mRI, _tim, _co, _nam, _mSIe],
1451
- [0, 4, [() => exports.MemoryContent$, 0], 64 | 0, 0], 2
1878
+ [_mRI, _tim, _co, _nam, _mSIe, _met],
1879
+ [0, 4, [() => exports.MemoryContent$, 0], 64 | 0, 0, () => MemoryRecordMetadataMap], 2
1452
1880
  ];
1453
1881
  exports.MessageMetadata$ = [3, n0, _MM,
1454
1882
  0,
@@ -1500,6 +1928,11 @@ exports.OAuthCredentialProvider$ = [3, n0, _OACP,
1500
1928
  [_pA, _sc, _cP, _gT, _dRU],
1501
1929
  [0, 64 | 0, [() => OAuthCustomParameters, 0], 0, 0], 2
1502
1930
  ];
1931
+ exports.PerVariantOnlineEvaluationConfig$ = [3, n0, _PVOEC,
1932
+ 0,
1933
+ [_n, _oECA],
1934
+ [0, 0], 2
1935
+ ];
1503
1936
  exports.ProxyBypass$ = [3, n0, _PB,
1504
1937
  0,
1505
1938
  [_dP],
@@ -1510,14 +1943,34 @@ exports.ProxyConfiguration$ = [3, n0, _PC,
1510
1943
  [_pro, _by],
1511
1944
  [() => Proxies, () => exports.ProxyBypass$], 1
1512
1945
  ];
1946
+ exports.RecommendationEvaluationConfig$ = [3, n0, _REC,
1947
+ 0,
1948
+ [_ev],
1949
+ [() => RecommendationEvaluatorList], 1
1950
+ ];
1951
+ exports.RecommendationEvaluatorReference$ = [3, n0, _RER,
1952
+ 0,
1953
+ [_eA],
1954
+ [0], 1
1955
+ ];
1956
+ exports.RecommendationResultConfigurationBundle$ = [3, n0, _RRCB,
1957
+ 0,
1958
+ [_bA, _vI],
1959
+ [0, 0], 2
1960
+ ];
1961
+ exports.RecommendationSummary$ = [3, n0, _RSe,
1962
+ 0,
1963
+ [_rI, _rAe, _n, _t, _sta, _cA, _uA, _d],
1964
+ [0, 0, 0, 0, 0, 5, 5, 0], 7
1965
+ ];
1513
1966
  exports.RegistryRecordSummary$ = [3, n0, _RRS,
1514
1967
  0,
1515
- [_rA, _rAe, _rIe, _n, _dT, _des, _ve, _sta, _cA, _uA, _de],
1968
+ [_rAeg, _rAec, _rIec, _n, _dT, _des, _ve, _sta, _cA, _uA, _d],
1516
1969
  [0, 0, 0, 0, 0, () => exports.Descriptors$, 0, 0, 5, 5, [() => Description, 0]], 10
1517
1970
  ];
1518
1971
  exports.ResourceContent$ = [3, n0, _RC,
1519
1972
  0,
1520
- [_t, _u, _mT, _te, _bl],
1973
+ [_t, _ur, _mT, _te, _bl],
1521
1974
  [0, 0, 0, 0, 21], 1
1522
1975
  ];
1523
1976
  exports.ResponseChunk$ = [3, n0, _RCe,
@@ -1557,7 +2010,7 @@ exports.ScreenshotArguments$ = [3, n0, _SA,
1557
2010
  ];
1558
2011
  exports.ScreenshotResult$ = [3, n0, _SR,
1559
2012
  0,
1560
- [_sta, _e, _d],
2013
+ [_sta, _e, _da],
1561
2014
  [0, 0, 21], 1
1562
2015
  ];
1563
2016
  exports.SearchCriteria$ = [3, n0, _SC,
@@ -1567,12 +2020,12 @@ exports.SearchCriteria$ = [3, n0, _SC,
1567
2020
  ];
1568
2021
  exports.SearchRegistryRecordsRequest$ = [3, n0, _SRRR,
1569
2022
  0,
1570
- [_sQ, _rIeg, _mRa, _fi],
2023
+ [_sQ, _rIeg, _mRa, _f],
1571
2024
  [0, 64 | 0, 1, 15], 2
1572
2025
  ];
1573
2026
  exports.SearchRegistryRecordsResponse$ = [3, n0, _SRRRe,
1574
2027
  0,
1575
- [_rR],
2028
+ [_rRe],
1576
2029
  [[() => RegistryRecordSummaryList, 0]], 1
1577
2030
  ];
1578
2031
  exports.SecretsManagerLocation$ = [3, n0, _SML,
@@ -1590,6 +2043,16 @@ exports.SessionFilter$ = [3, n0, _SF,
1590
2043
  [_eF],
1591
2044
  [0]
1592
2045
  ];
2046
+ exports.SessionFilterConfig$ = [3, n0, _SFC,
2047
+ 0,
2048
+ [_sT, _eT],
2049
+ [5, 5]
2050
+ ];
2051
+ exports.SessionMetadataShape$ = [3, n0, _SMS,
2052
+ 0,
2053
+ [_sI, _tSI, _gTr, _met],
2054
+ [0, 0, () => exports.GroundTruthSource$, 128 | 0], 1
2055
+ ];
1593
2056
  exports.SessionSummary$ = [3, n0, _SSe,
1594
2057
  0,
1595
2058
  [_sI, _aI, _cA],
@@ -1610,6 +2073,16 @@ exports.SpanContext$ = [3, n0, _SCp,
1610
2073
  [_sI, _tI, _sIp],
1611
2074
  [0, 0, 0], 1
1612
2075
  ];
2076
+ exports.StartBatchEvaluationRequest$ = [3, n0, _SBER,
2077
+ 0,
2078
+ [_bEN, _dSC, _ev, _cT, _eMva, _d],
2079
+ [0, () => exports.DataSourceConfig$, () => EvaluatorList, [0, 4], () => exports.EvaluationMetadata$, 0], 2
2080
+ ];
2081
+ exports.StartBatchEvaluationResponse$ = [3, n0, _SBERt,
2082
+ 0,
2083
+ [_bEI, _bEA, _bEN, _sta, _cA, _ev, _oC, _d],
2084
+ [0, 0, 0, 0, 5, () => EvaluatorList, () => exports.OutputConfig$, 0], 5
2085
+ ];
1613
2086
  exports.StartBrowserSessionRequest$ = [3, n0, _SBSR,
1614
2087
  0,
1615
2088
  [_bI, _tI, _tPr, _n, _sTS, _vP, _ext, _pC, _pCr, _eP, _ce, _cT],
@@ -1640,6 +2113,26 @@ exports.StartMemoryExtractionJobOutput$ = [3, n0, _SMEJO,
1640
2113
  [_jI],
1641
2114
  [0], 1
1642
2115
  ];
2116
+ exports.StartRecommendationRequest$ = [3, n0, _SRR,
2117
+ 0,
2118
+ [_n, _t, _rC, _d, _cT],
2119
+ [0, 0, [() => exports.RecommendationConfig$, 0], 0, [0, 4]], 3
2120
+ ];
2121
+ exports.StartRecommendationResponse$ = [3, n0, _SRRt,
2122
+ 0,
2123
+ [_rI, _rAe, _n, _t, _rC, _sta, _cA, _uA, _d],
2124
+ [0, 0, 0, 0, [() => exports.RecommendationConfig$, 0], 0, 5, 5, 0], 8
2125
+ ];
2126
+ exports.StopBatchEvaluationRequest$ = [3, n0, _SBERto,
2127
+ 0,
2128
+ [_bEI],
2129
+ [[0, 1]], 1
2130
+ ];
2131
+ exports.StopBatchEvaluationResponse$ = [3, n0, _SBERtop,
2132
+ 0,
2133
+ [_bEI, _bEA, _sta, _d],
2134
+ [0, 0, 0, 0], 3
2135
+ ];
1643
2136
  exports.StopBrowserSessionRequest$ = [3, n0, _SBSRto,
1644
2137
  0,
1645
2138
  [_bI, _sI, _tI, _tPr, _cT],
@@ -1670,6 +2163,26 @@ exports.StopRuntimeSessionResponse$ = [3, n0, _SRSRt,
1670
2163
  [_rSI, _sCt],
1671
2164
  [[0, { [_hH]: _XABARSI }], [1, 32]]
1672
2165
  ];
2166
+ exports.SystemPromptConfigurationBundle$ = [3, n0, _SPCB,
2167
+ 0,
2168
+ [_bA, _vI, _sPJP],
2169
+ [0, 0, 0], 3
2170
+ ];
2171
+ exports.SystemPromptRecommendationConfig$ = [3, n0, _SPRC,
2172
+ 0,
2173
+ [_sP, _aTg, _eCv],
2174
+ [[() => exports.SystemPromptConfig$, 0], [() => exports.AgentTracesConfig$, 0], () => exports.RecommendationEvaluationConfig$], 3
2175
+ ];
2176
+ exports.SystemPromptRecommendationResult$ = [3, n0, _SPRR,
2177
+ 0,
2178
+ [_rSP, _cB, _eCr, _eMr],
2179
+ [[() => SystemPromptText, 0], () => exports.RecommendationResultConfigurationBundle$, 0, 0]
2180
+ ];
2181
+ exports.TargetRef$ = [3, n0, _TR,
2182
+ 0,
2183
+ [_n],
2184
+ [0], 1
2185
+ ];
1673
2186
  exports.TokenUsage$ = [3, n0, _TU,
1674
2187
  0,
1675
2188
  [_iTn, _oT, _tT],
@@ -1677,9 +2190,39 @@ exports.TokenUsage$ = [3, n0, _TU,
1677
2190
  ];
1678
2191
  exports.ToolArguments$ = [3, n0, _TA,
1679
2192
  0,
1680
- [_cod, _lan, _cCl, _com, _pa, _pat, _co, _dPi, _tIa, _ru],
2193
+ [_cod, _lan, _cCl, _com, _pa, _pat, _co, _dPi, _tIa, _run],
1681
2194
  [0, 0, 2, 0, 0, 64 | 0, [() => InputContentBlockList, 0], 0, 0, 0]
1682
2195
  ];
2196
+ exports.ToolDescriptionConfigurationBundle$ = [3, n0, _TDCB,
2197
+ 0,
2198
+ [_bA, _vI, _to],
2199
+ [0, 0, () => ConfigurationBundleToolEntryList], 3
2200
+ ];
2201
+ exports.ToolDescriptionInput$ = [3, n0, _TDI,
2202
+ 0,
2203
+ [_tN, _tD],
2204
+ [0, [() => exports.ToolDescriptionConfig$, 0]], 2
2205
+ ];
2206
+ exports.ToolDescriptionOutput$ = [3, n0, _TDO,
2207
+ 0,
2208
+ [_tN, _rTD],
2209
+ [0, [() => ToolDescriptionText, 0]], 1
2210
+ ];
2211
+ exports.ToolDescriptionRecommendationConfig$ = [3, n0, _TDRC,
2212
+ 0,
2213
+ [_tD, _aTg],
2214
+ [[() => exports.ToolDescriptionSource$, 0], [() => exports.AgentTracesConfig$, 0]], 2
2215
+ ];
2216
+ exports.ToolDescriptionRecommendationResult$ = [3, n0, _TDRR,
2217
+ 0,
2218
+ [_to, _cB, _eCr, _eMr],
2219
+ [[() => ToolDescriptionResultList, 0], () => exports.RecommendationResultConfigurationBundle$, 0, 0]
2220
+ ];
2221
+ exports.ToolDescriptionTextInput$ = [3, n0, _TDTI,
2222
+ 0,
2223
+ [_to],
2224
+ [[() => ToolDescriptionList, 0]], 1
2225
+ ];
1683
2226
  exports.ToolResultStructuredContent$ = [3, n0, _TRSC,
1684
2227
  0,
1685
2228
  [_tIa, _tSa, _std, _stde, _eC, _eTxe],
@@ -1690,6 +2233,16 @@ exports.ToolsDefinition$ = [3, n0, _TD,
1690
2233
  [_pV, _iC],
1691
2234
  [0, 0]
1692
2235
  ];
2236
+ exports.UpdateABTestRequest$ = [3, n0, _UABTR,
2237
+ 0,
2238
+ [_aTI, _cT, _n, _d, _va, _gF, _eCv, _rA, _eS],
2239
+ [[0, 1], [0, 4], 0, 0, () => VariantList, () => exports.GatewayFilter$, () => exports.ABTestEvaluationConfig$, 0, 0], 1
2240
+ ];
2241
+ exports.UpdateABTestResponse$ = [3, n0, _UABTRp,
2242
+ 0,
2243
+ [_aTI, _aTA, _sta, _eS, _uA],
2244
+ [0, 0, 0, 0, 4], 5
2245
+ ];
1693
2246
  exports.UpdateBrowserStreamRequest$ = [3, n0, _UBSR,
1694
2247
  0,
1695
2248
  [_bI, _sI, _sUt, _cT],
@@ -1705,15 +2258,37 @@ exports.ValidationExceptionField$ = [3, n0, _VEF,
1705
2258
  [_n, _m],
1706
2259
  [0, 0], 2
1707
2260
  ];
2261
+ exports.Variant$ = [3, n0, _V,
2262
+ 0,
2263
+ [_n, _w, _vC],
2264
+ [0, 1, () => exports.VariantConfiguration$], 3
2265
+ ];
2266
+ exports.VariantConfiguration$ = [3, n0, _VC,
2267
+ 0,
2268
+ [_cB, _ta],
2269
+ [() => exports.ConfigurationBundleRef$, () => exports.TargetRef$]
2270
+ ];
2271
+ exports.VariantResult$ = [3, n0, _VR,
2272
+ 0,
2273
+ [_vN, _sSa, _me, _iSs, _aCb, _pCe, _pVa, _cI],
2274
+ [0, 1, 1, 2, 1, 1, 1, () => exports.ConfidenceInterval$], 4
2275
+ ];
1708
2276
  exports.ViewPort$ = [3, n0, _VP,
1709
2277
  0,
1710
- [_w, _he],
2278
+ [_wi, _he],
1711
2279
  [1, 1], 2
1712
2280
  ];
1713
2281
  var __Unit = "unit";
2282
+ var ABTestSummaryList = [1, n0, _ABTSL,
2283
+ 0, () => exports.ABTestSummary$
2284
+ ];
1714
2285
  var ActorSummaryList = [1, n0, _ASL,
1715
2286
  0, () => exports.ActorSummary$
1716
2287
  ];
2288
+ var AudiencesListType = 64 | 0;
2289
+ var BatchEvaluationSummaryList = [1, n0, _BESL,
2290
+ 0, () => exports.BatchEvaluationSummary$
2291
+ ];
1717
2292
  var BrowserEnterprisePolicies = [1, n0, _BEPr,
1718
2293
  0, () => exports.BrowserEnterprisePolicy$
1719
2294
  ];
@@ -1726,13 +2301,20 @@ var BrowserSessionSummaries = [1, n0, _BSSro,
1726
2301
  var Certificates = [1, n0, _Ce,
1727
2302
  0, () => exports.Certificate$
1728
2303
  ];
2304
+ var CloudWatchLogsFilterList = [1, n0, _CWLFL,
2305
+ 0, () => exports.CloudWatchLogsFilter$
2306
+ ];
1729
2307
  var CodeInterpreterSessionSummaries = [1, n0, _CISSo,
1730
2308
  0, () => exports.CodeInterpreterSessionSummary$
1731
2309
  ];
2310
+ var ConfigurationBundleToolEntryList = [1, n0, _CBTEL,
2311
+ 0, () => exports.ConfigurationBundleToolEntry$
2312
+ ];
1732
2313
  var ContentBlockList = [1, n0, _CBL,
1733
2314
  0, () => exports.ContentBlock$
1734
2315
  ];
1735
2316
  var DomainPatterns = 64 | 0;
2317
+ var ErrorDetailsList = 64 | 0;
1736
2318
  var EvaluationContentList = [1, n0, _ECL,
1737
2319
  0, () => exports.EvaluationContent$
1738
2320
  ];
@@ -1743,8 +2325,18 @@ var EvaluationResults = [1, n0, _ERva,
1743
2325
  0, [() => exports.EvaluationResultContent$,
1744
2326
  0]
1745
2327
  ];
2328
+ var EvaluationStringList = 64 | 0;
1746
2329
  var EvaluationToolNames = 64 | 0;
1747
- var EventList = [1, n0, _EL,
2330
+ var EvaluatorList = [1, n0, _EL,
2331
+ 0, () => exports.Evaluator$
2332
+ ];
2333
+ var EvaluatorMetricList = [1, n0, _EML,
2334
+ 0, () => exports.EvaluatorMetric$
2335
+ ];
2336
+ var EvaluatorSummaryList = [1, n0, _ESL,
2337
+ 0, () => exports.EvaluatorSummary$
2338
+ ];
2339
+ var EventList = [1, n0, _ELv,
1748
2340
  0, [() => exports.Event$,
1749
2341
  0]
1750
2342
  ];
@@ -1754,6 +2346,9 @@ var EventMetadataFilterList = [1, n0, _EMFL,
1754
2346
  var ExtractionJobMetadataList = [1, n0, _EJML,
1755
2347
  0, () => exports.ExtractionJobMetadata$
1756
2348
  ];
2349
+ var GroundTruthTurnList = [1, n0, _GTTL,
2350
+ 0, () => exports.GroundTruthTurn$
2351
+ ];
1757
2352
  var HarnessAllowedTools = 64 | 0;
1758
2353
  var HarnessContentBlocks = [1, n0, _HCB,
1759
2354
  0, [() => exports.HarnessContentBlock$,
@@ -1788,6 +2383,7 @@ var InputContentBlockList = [1, n0, _ICBL,
1788
2383
  0]
1789
2384
  ];
1790
2385
  var KeyList = 64 | 0;
2386
+ var LogGroupArnList = 64 | 0;
1791
2387
  var MemoryMetadataFilterList = [1, n0, _MMFL,
1792
2388
  0, () => exports.MemoryMetadataFilterExpression$
1793
2389
  ];
@@ -1818,15 +2414,29 @@ var PayloadTypeList = [1, n0, _PTL,
1818
2414
  0, [() => exports.PayloadType$,
1819
2415
  0]
1820
2416
  ];
2417
+ var PerVariantOnlineEvaluationConfigList = [1, n0, _PVOECL,
2418
+ 0, () => exports.PerVariantOnlineEvaluationConfig$
2419
+ ];
1821
2420
  var Proxies = [1, n0, _P,
1822
2421
  0, () => exports.Proxy$
1823
2422
  ];
2423
+ var RecommendationEvaluatorList = [1, n0, _REL,
2424
+ 0, () => exports.RecommendationEvaluatorReference$
2425
+ ];
2426
+ var RecommendationSummaryList = [1, n0, _RSL,
2427
+ 0, () => exports.RecommendationSummary$
2428
+ ];
1824
2429
  var RegistryIdList = 64 | 0;
1825
2430
  var RegistryRecordSummaryList = [1, n0, _RRSL,
1826
2431
  0, [() => exports.RegistryRecordSummary$,
1827
2432
  0]
1828
2433
  ];
2434
+ var ResourcesListType = 64 | 0;
1829
2435
  var ScopesListType = 64 | 0;
2436
+ var ServiceNameList = 64 | 0;
2437
+ var SessionMetadataList = [1, n0, _SMLe,
2438
+ 0, () => exports.SessionMetadataShape$
2439
+ ];
1830
2440
  var SessionSummaryList = [1, n0, _SSL,
1831
2441
  0, () => exports.SessionSummary$
1832
2442
  ];
@@ -1835,10 +2445,26 @@ var Spans = [1, n0, _Sp,
1835
2445
  8, 15
1836
2446
  ];
1837
2447
  var StringList = 64 | 0;
2448
+ var StringValueList = 64 | 0;
2449
+ var TargetPathList = 64 | 0;
2450
+ var ToolDescriptionList = [1, n0, _TDL,
2451
+ 0, [() => exports.ToolDescriptionInput$,
2452
+ 0]
2453
+ ];
2454
+ var ToolDescriptionResultList = [1, n0, _TDRL,
2455
+ 0, [() => exports.ToolDescriptionOutput$,
2456
+ 0]
2457
+ ];
1838
2458
  var TraceIds = 64 | 0;
1839
2459
  var ValidationExceptionFieldList = [1, n0, _VEFL,
1840
2460
  0, () => exports.ValidationExceptionField$
1841
2461
  ];
2462
+ var VariantList = [1, n0, _VL,
2463
+ 0, () => exports.Variant$
2464
+ ];
2465
+ var VariantResultList = [1, n0, _VRL,
2466
+ 0, () => exports.VariantResult$
2467
+ ];
1842
2468
  var CustomRequestParametersType = [2, n0, _CRPT,
1843
2469
  0, [0,
1844
2470
  0],
@@ -1848,6 +2474,9 @@ var CustomRequestParametersType = [2, n0, _CRPT,
1848
2474
  var HttpHeadersMap = [2, n0, _HHM,
1849
2475
  8, 0, 0
1850
2476
  ];
2477
+ var MemoryRecordMetadataMap = [2, n0, _MRMM,
2478
+ 0, 0, () => exports.MemoryRecordMetadataValue$
2479
+ ];
1851
2480
  var MetadataMap = [2, n0, _MMe,
1852
2481
  0, 0, () => exports.MetadataValue$
1853
2482
  ];
@@ -1857,6 +2486,17 @@ var OAuthCustomParameters = [2, n0, _OACPu,
1857
2486
  [() => OAuthCustomParametersValue,
1858
2487
  0]
1859
2488
  ];
2489
+ var StringMap = 128 | 0;
2490
+ exports.ABTestEvaluationConfig$ = [4, n0, _ABTEC,
2491
+ 0,
2492
+ [_oECA, _pVOEC],
2493
+ [0, () => PerVariantOnlineEvaluationConfigList]
2494
+ ];
2495
+ exports.AgentTracesConfig$ = [4, n0, _ATC,
2496
+ 0,
2497
+ [_sSess, _cL],
2498
+ [[() => Spans, 0], () => exports.CloudWatchLogsTraceConfig$]
2499
+ ];
1860
2500
  exports.BrowserAction$ = [4, n0, _BAr,
1861
2501
  0,
1862
2502
  [_mC, _mM, _mD, _mS, _kT, _kP, _kS, _scr],
@@ -1874,7 +2514,7 @@ exports.CertificateLocation$ = [4, n0, _CL,
1874
2514
  ];
1875
2515
  exports.CodeInterpreterStreamOutput$ = [4, n0, _CISO,
1876
2516
  { [_st]: 1 },
1877
- [_resu, _aDE, _cE, _iSE, _rNFE, _sQEE, _tE, _vE],
2517
+ [_resul, _aDE, _cE, _iSE, _rNFE, _sQEE, _tEh, _vE],
1878
2518
  [() => exports.CodeInterpreterResult$, [() => exports.AccessDeniedException$, 0], [() => exports.ConflictException$, 0], [() => exports.InternalServerException$, 0], [() => exports.ResourceNotFoundException$, 0], [() => exports.ServiceQuotaExceededException$, 0], [() => exports.ThrottlingException$, 0], [() => exports.ValidationException$, 0]]
1879
2519
  ];
1880
2520
  exports.Content$ = [4, n0, _Con,
@@ -1887,6 +2527,11 @@ exports.Context$ = [4, n0, _Cont,
1887
2527
  [_sCp],
1888
2528
  [() => exports.SpanContext$]
1889
2529
  ];
2530
+ exports.DataSourceConfig$ = [4, n0, _DSC,
2531
+ 0,
2532
+ [_cWL],
2533
+ [() => exports.CloudWatchLogsSource$]
2534
+ ];
1890
2535
  exports.EvaluationContent$ = [4, n0, _EC,
1891
2536
  0,
1892
2537
  [_te],
@@ -1897,6 +2542,11 @@ exports.EvaluationInput$ = [4, n0, _EI,
1897
2542
  [_sSess],
1898
2543
  [[() => Spans, 0]]
1899
2544
  ];
2545
+ exports.EvaluationMetadata$ = [4, n0, _EMv,
2546
+ 0,
2547
+ [_sMes],
2548
+ [() => SessionMetadataList]
2549
+ ];
1900
2550
  exports.EvaluationTarget$ = [4, n0, _ET,
1901
2551
  0,
1902
2552
  [_sIpa, _tIr],
@@ -1907,19 +2557,34 @@ exports.ExtractionJobMessages$ = [4, n0, _EJMx,
1907
2557
  [_mL],
1908
2558
  [() => MessagesList]
1909
2559
  ];
2560
+ exports.FilterValue$ = [4, n0, _FV,
2561
+ 0,
2562
+ [_sVt, _dV, _bVo],
2563
+ [0, 1, 2]
2564
+ ];
2565
+ exports.GroundTruthSource$ = [4, n0, _GTS,
2566
+ 0,
2567
+ [_in],
2568
+ [() => exports.InlineGroundTruth$]
2569
+ ];
2570
+ exports.GroundTruthTurnInput$ = [4, n0, _GTTI,
2571
+ 0,
2572
+ [_prom],
2573
+ [0]
2574
+ ];
1910
2575
  exports.HarnessContentBlock$ = [4, n0, _HCBa,
1911
2576
  0,
1912
- [_te, _tUo, _tR, _rC],
2577
+ [_te, _tUo, _tRo, _rCe],
1913
2578
  [[() => SensitiveText, 0], [() => exports.HarnessToolUseBlock$, 0], [() => exports.HarnessToolResultBlock$, 0], [() => exports.HarnessReasoningContentBlock$, 0]]
1914
2579
  ];
1915
2580
  exports.HarnessContentBlockDelta$ = [4, n0, _HCBD,
1916
2581
  0,
1917
- [_te, _tUo, _tR, _rC],
2582
+ [_te, _tUo, _tRo, _rCe],
1918
2583
  [[() => SensitiveText, 0], [() => exports.HarnessToolUseBlockDelta$, 0], [() => HarnessToolResultBlocksDelta, 0], [() => exports.HarnessReasoningContentBlockDelta$, 0]]
1919
2584
  ];
1920
2585
  exports.HarnessContentBlockStart$ = [4, n0, _HCBS,
1921
2586
  0,
1922
- [_tUo, _tR],
2587
+ [_tUo, _tRo],
1923
2588
  [() => exports.HarnessToolUseBlockStart$, () => exports.HarnessToolResultBlockStart$]
1924
2589
  ];
1925
2590
  exports.HarnessGatewayOutboundAuth$ = [4, n0, _HGOA,
@@ -1934,12 +2599,12 @@ exports.HarnessModelConfiguration$ = [4, n0, _HMC,
1934
2599
  ];
1935
2600
  exports.HarnessReasoningContentBlock$ = [4, n0, _HRCB,
1936
2601
  8,
1937
- [_rT, _rCe],
2602
+ [_rT, _rCed],
1938
2603
  [[() => exports.HarnessReasoningTextBlock$, 0], 21]
1939
2604
  ];
1940
2605
  exports.HarnessReasoningContentBlockDelta$ = [4, n0, _HRCBD,
1941
2606
  8,
1942
- [_te, _rCe, _sig],
2607
+ [_te, _rCed, _sig],
1943
2608
  [0, [() => Body, 0], 0]
1944
2609
  ];
1945
2610
  exports.HarnessSkill$ = [4, n0, _HSa,
@@ -1969,12 +2634,12 @@ exports.HarnessToolResultContentBlock$ = [4, n0, _HTRCBa,
1969
2634
  ];
1970
2635
  exports.InvokeAgentRuntimeCommandStreamOutput$ = [4, n0, _IARCSO,
1971
2636
  { [_st]: 1 },
1972
- [_ch, _aDE, _iSE, _rNFE, _sQEE, _tE, _vE, _rCE],
2637
+ [_ch, _aDE, _iSE, _rNFE, _sQEE, _tEh, _vE, _rCE],
1973
2638
  [() => exports.ResponseChunk$, [() => exports.AccessDeniedException$, 0], [() => exports.InternalServerException$, 0], [() => exports.ResourceNotFoundException$, 0], [() => exports.ServiceQuotaExceededException$, 0], [() => exports.ThrottlingException$, 0], [() => exports.ValidationException$, 0], [() => exports.RuntimeClientError$, 0]]
1974
2639
  ];
1975
2640
  exports.InvokeHarnessStreamOutput$ = [4, n0, _IHSO,
1976
2641
  { [_st]: 1 },
1977
- [_mSe, _cBS, _cBD, _cBSo, _mSes, _me, _iSE, _vE, _rCE],
2642
+ [_mSe, _cBS, _cBD, _cBSo, _mSes, _met, _iSE, _vE, _rCE],
1978
2643
  [() => exports.HarnessMessageStartEvent$, () => exports.HarnessContentBlockStartEvent$, [() => exports.HarnessContentBlockDeltaEvent$, 0], () => exports.HarnessContentBlockStopEvent$, () => exports.HarnessMessageStopEvent$, () => exports.HarnessMetadataEvent$, [() => exports.InternalServerException$, 0], [() => exports.ValidationException$, 0], [() => exports.RuntimeClientError$, 0]]
1979
2644
  ];
1980
2645
  exports.LeftExpression$ = [4, n0, _LE,
@@ -1987,11 +2652,31 @@ exports.MemoryContent$ = [4, n0, _MC,
1987
2652
  [_te],
1988
2653
  [[() => SensitiveString, 0]]
1989
2654
  ];
2655
+ exports.MemoryRecordLeftExpression$ = [4, n0, _MRLE,
2656
+ 0,
2657
+ [_mK],
2658
+ [0]
2659
+ ];
2660
+ exports.MemoryRecordMetadataValue$ = [4, n0, _MRMV,
2661
+ 0,
2662
+ [_sVt, _sLV, _nV, _dTV],
2663
+ [0, 64 | 0, 1, 4]
2664
+ ];
2665
+ exports.MemoryRecordRightExpression$ = [4, n0, _MRRE,
2666
+ 0,
2667
+ [_mV],
2668
+ [() => exports.MemoryRecordMetadataValue$]
2669
+ ];
1990
2670
  exports.MetadataValue$ = [4, n0, _MV,
1991
2671
  0,
1992
2672
  [_sVt],
1993
2673
  [0]
1994
2674
  ];
2675
+ exports.OutputConfig$ = [4, n0, _OC,
2676
+ 0,
2677
+ [_cWC],
2678
+ [() => exports.CloudWatchOutputConfig$]
2679
+ ];
1995
2680
  exports.PayloadType$ = [4, n0, _PT,
1996
2681
  0,
1997
2682
  [_conv, _bl],
@@ -2007,6 +2692,16 @@ exports.ProxyCredentials$ = [4, n0, _PCr,
2007
2692
  [_bAa],
2008
2693
  [() => exports.BasicAuth$]
2009
2694
  ];
2695
+ exports.RecommendationConfig$ = [4, n0, _RCec,
2696
+ 0,
2697
+ [_sPRC, _tDRC],
2698
+ [[() => exports.SystemPromptRecommendationConfig$, 0], [() => exports.ToolDescriptionRecommendationConfig$, 0]]
2699
+ ];
2700
+ exports.RecommendationResult$ = [4, n0, _RR,
2701
+ 0,
2702
+ [_sPRR, _tDRR],
2703
+ [[() => exports.SystemPromptRecommendationResult$, 0], [() => exports.ToolDescriptionRecommendationResult$, 0]]
2704
+ ];
2010
2705
  exports.ResourceLocation$ = [4, n0, _RL,
2011
2706
  0,
2012
2707
  [_s_],
@@ -2022,6 +2717,21 @@ exports.StreamUpdate$ = [4, n0, _SU,
2022
2717
  [_aSU],
2023
2718
  [() => exports.AutomationStreamUpdate$]
2024
2719
  ];
2720
+ exports.SystemPromptConfig$ = [4, n0, _SPC,
2721
+ 0,
2722
+ [_te, _cB],
2723
+ [[() => SystemPromptText, 0], () => exports.SystemPromptConfigurationBundle$]
2724
+ ];
2725
+ exports.ToolDescriptionConfig$ = [4, n0, _TDC,
2726
+ 0,
2727
+ [_te],
2728
+ [[() => ToolDescriptionText, 0]]
2729
+ ];
2730
+ exports.ToolDescriptionSource$ = [4, n0, _TDS,
2731
+ 0,
2732
+ [_tDT, _cB],
2733
+ [[() => exports.ToolDescriptionTextInput$, 0], () => exports.ToolDescriptionConfigurationBundle$]
2734
+ ];
2025
2735
  exports.UserIdentifier$ = [4, n0, _UI,
2026
2736
  0,
2027
2737
  [_uT, _uIs],
@@ -2039,21 +2749,39 @@ exports.BatchUpdateMemoryRecords$ = [9, n0, _BUMR,
2039
2749
  exports.CompleteResourceTokenAuth$ = [9, n0, _CRTA,
2040
2750
  { [_ht]: ["POST", "/identities/CompleteResourceTokenAuth", 200] }, () => exports.CompleteResourceTokenAuthRequest$, () => exports.CompleteResourceTokenAuthResponse$
2041
2751
  ];
2752
+ exports.CreateABTest$ = [9, n0, _CABT,
2753
+ { [_ht]: ["POST", "/ab-tests", 202] }, () => exports.CreateABTestRequest$, () => exports.CreateABTestResponse$
2754
+ ];
2042
2755
  exports.CreateEvent$ = [9, n0, _CEr,
2043
2756
  { [_ht]: ["POST", "/memories/{memoryId}/events", 201] }, () => exports.CreateEventInput$, () => exports.CreateEventOutput$
2044
2757
  ];
2758
+ exports.DeleteABTest$ = [9, n0, _DABT,
2759
+ { [_ht]: ["DELETE", "/ab-tests/{abTestId}", 202] }, () => exports.DeleteABTestRequest$, () => exports.DeleteABTestResponse$
2760
+ ];
2761
+ exports.DeleteBatchEvaluation$ = [9, n0, _DBE,
2762
+ { [_ht]: ["DELETE", "/evaluations/batch-evaluate/{batchEvaluationId}", 202] }, () => exports.DeleteBatchEvaluationRequest$, () => exports.DeleteBatchEvaluationResponse$
2763
+ ];
2045
2764
  exports.DeleteEvent$ = [9, n0, _DE,
2046
2765
  { [_ht]: ["DELETE", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200] }, () => exports.DeleteEventInput$, () => exports.DeleteEventOutput$
2047
2766
  ];
2048
2767
  exports.DeleteMemoryRecord$ = [9, n0, _DMR,
2049
2768
  { [_ht]: ["DELETE", "/memories/{memoryId}/memoryRecords/{memoryRecordId}", 200] }, () => exports.DeleteMemoryRecordInput$, () => exports.DeleteMemoryRecordOutput$
2050
2769
  ];
2051
- exports.Evaluate$ = [9, n0, _Ev,
2770
+ exports.DeleteRecommendation$ = [9, n0, _DR,
2771
+ { [_ht]: ["DELETE", "/recommendations/{recommendationId}", 202] }, () => exports.DeleteRecommendationRequest$, () => exports.DeleteRecommendationResponse$
2772
+ ];
2773
+ exports.Evaluate$ = [9, n0, _Eva,
2052
2774
  { [_ht]: ["POST", "/evaluations/evaluate/{evaluatorId}", 200] }, () => exports.EvaluateRequest$, () => exports.EvaluateResponse$
2053
2775
  ];
2776
+ exports.GetABTest$ = [9, n0, _GABT,
2777
+ { [_ht]: ["GET", "/ab-tests/{abTestId}", 200] }, () => exports.GetABTestRequest$, () => exports.GetABTestResponse$
2778
+ ];
2054
2779
  exports.GetAgentCard$ = [9, n0, _GAC,
2055
2780
  { [_ht]: ["GET", "/runtimes/{agentRuntimeArn}/invocations/.well-known/agent-card.json", 200] }, () => exports.GetAgentCardRequest$, () => exports.GetAgentCardResponse$
2056
2781
  ];
2782
+ exports.GetBatchEvaluation$ = [9, n0, _GBE,
2783
+ { [_ht]: ["GET", "/evaluations/batch-evaluate/{batchEvaluationId}", 200] }, () => exports.GetBatchEvaluationRequest$, () => exports.GetBatchEvaluationResponse$
2784
+ ];
2057
2785
  exports.GetBrowserSession$ = [9, n0, _GBS,
2058
2786
  { [_ht]: ["GET", "/browsers/{browserIdentifier}/sessions/get", 200] }, () => exports.GetBrowserSessionRequest$, () => exports.GetBrowserSessionResponse$
2059
2787
  ];
@@ -2066,6 +2794,9 @@ exports.GetEvent$ = [9, n0, _GE,
2066
2794
  exports.GetMemoryRecord$ = [9, n0, _GMR,
2067
2795
  { [_ht]: ["GET", "/memories/{memoryId}/memoryRecord/{memoryRecordId}", 200] }, () => exports.GetMemoryRecordInput$, () => exports.GetMemoryRecordOutput$
2068
2796
  ];
2797
+ exports.GetRecommendation$ = [9, n0, _GR,
2798
+ { [_ht]: ["GET", "/recommendations/{recommendationId}", 200] }, () => exports.GetRecommendationRequest$, () => exports.GetRecommendationResponse$
2799
+ ];
2069
2800
  exports.GetResourceApiKey$ = [9, n0, _GRAK,
2070
2801
  { [_ht]: ["POST", "/identities/api-key", 200] }, () => exports.GetResourceApiKeyRequest$, () => exports.GetResourceApiKeyResponse$
2071
2802
  ];
@@ -2096,9 +2827,15 @@ exports.InvokeCodeInterpreter$ = [9, n0, _ICI,
2096
2827
  exports.InvokeHarness$ = [9, n0, _IH,
2097
2828
  { [_ht]: ["POST", "/harnesses/invoke", 200] }, () => exports.InvokeHarnessRequest$, () => exports.InvokeHarnessResponse$
2098
2829
  ];
2830
+ exports.ListABTests$ = [9, n0, _LABT,
2831
+ { [_ht]: ["GET", "/ab-tests", 200] }, () => exports.ListABTestsRequest$, () => exports.ListABTestsResponse$
2832
+ ];
2099
2833
  exports.ListActors$ = [9, n0, _LA,
2100
2834
  { [_ht]: ["POST", "/memories/{memoryId}/actors", 200] }, () => exports.ListActorsInput$, () => exports.ListActorsOutput$
2101
2835
  ];
2836
+ exports.ListBatchEvaluations$ = [9, n0, _LBE,
2837
+ { [_ht]: ["GET", "/evaluations/batch-evaluate", 200] }, () => exports.ListBatchEvaluationsRequest$, () => exports.ListBatchEvaluationsResponse$
2838
+ ];
2102
2839
  exports.ListBrowserSessions$ = [9, n0, _LBS,
2103
2840
  { [_ht]: ["POST", "/browsers/{browserIdentifier}/sessions/list", 200] }, () => exports.ListBrowserSessionsRequest$, () => exports.ListBrowserSessionsResponse$
2104
2841
  ];
@@ -2114,6 +2851,9 @@ exports.ListMemoryExtractionJobs$ = [9, n0, _LMEJ,
2114
2851
  exports.ListMemoryRecords$ = [9, n0, _LMR,
2115
2852
  { [_ht]: ["POST", "/memories/{memoryId}/memoryRecords", 200] }, () => exports.ListMemoryRecordsInput$, () => exports.ListMemoryRecordsOutput$
2116
2853
  ];
2854
+ exports.ListRecommendations$ = [9, n0, _LR,
2855
+ { [_ht]: ["GET", "/recommendations", 200] }, () => exports.ListRecommendationsRequest$, () => exports.ListRecommendationsResponse$
2856
+ ];
2117
2857
  exports.ListSessions$ = [9, n0, _LS,
2118
2858
  { [_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions", 200] }, () => exports.ListSessionsInput$, () => exports.ListSessionsOutput$
2119
2859
  ];
@@ -2123,9 +2863,12 @@ exports.RetrieveMemoryRecords$ = [9, n0, _RMR,
2123
2863
  exports.SaveBrowserSessionProfile$ = [9, n0, _SBSP,
2124
2864
  { [_ht]: ["PUT", "/browser-profiles/{profileIdentifier}/save", 200] }, () => exports.SaveBrowserSessionProfileRequest$, () => exports.SaveBrowserSessionProfileResponse$
2125
2865
  ];
2126
- exports.SearchRegistryRecords$ = [9, n0, _SRR,
2866
+ exports.SearchRegistryRecords$ = [9, n0, _SRRe,
2127
2867
  { [_ht]: ["POST", "/registry-records/search", 200] }, () => exports.SearchRegistryRecordsRequest$, () => exports.SearchRegistryRecordsResponse$
2128
2868
  ];
2869
+ exports.StartBatchEvaluation$ = [9, n0, _SBE,
2870
+ { [_ht]: ["POST", "/evaluations/batch-evaluate", 202] }, () => exports.StartBatchEvaluationRequest$, () => exports.StartBatchEvaluationResponse$
2871
+ ];
2129
2872
  exports.StartBrowserSession$ = [9, n0, _SBS,
2130
2873
  { [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/start", 200] }, () => exports.StartBrowserSessionRequest$, () => exports.StartBrowserSessionResponse$
2131
2874
  ];
@@ -2135,6 +2878,12 @@ exports.StartCodeInterpreterSession$ = [9, n0, _SCIS,
2135
2878
  exports.StartMemoryExtractionJob$ = [9, n0, _SMEJ,
2136
2879
  { [_ht]: ["POST", "/memories/{memoryId}/extractionJobs/start", 200] }, () => exports.StartMemoryExtractionJobInput$, () => exports.StartMemoryExtractionJobOutput$
2137
2880
  ];
2881
+ exports.StartRecommendation$ = [9, n0, _SRt,
2882
+ { [_ht]: ["POST", "/recommendations", 202] }, () => exports.StartRecommendationRequest$, () => exports.StartRecommendationResponse$
2883
+ ];
2884
+ exports.StopBatchEvaluation$ = [9, n0, _SBEt,
2885
+ { [_ht]: ["POST", "/evaluations/batch-evaluate/{batchEvaluationId}/stop", 202] }, () => exports.StopBatchEvaluationRequest$, () => exports.StopBatchEvaluationResponse$
2886
+ ];
2138
2887
  exports.StopBrowserSession$ = [9, n0, _SBSt,
2139
2888
  { [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/stop", 200] }, () => exports.StopBrowserSessionRequest$, () => exports.StopBrowserSessionResponse$
2140
2889
  ];
@@ -2144,6 +2893,9 @@ exports.StopCodeInterpreterSession$ = [9, n0, _SCISt,
2144
2893
  exports.StopRuntimeSession$ = [9, n0, _SRS,
2145
2894
  { [_ht]: ["POST", "/runtimes/{agentRuntimeArn}/stopruntimesession", 200] }, () => exports.StopRuntimeSessionRequest$, () => exports.StopRuntimeSessionResponse$
2146
2895
  ];
2896
+ exports.UpdateABTest$ = [9, n0, _UABT,
2897
+ { [_ht]: ["PUT", "/ab-tests/{abTestId}", 202] }, () => exports.UpdateABTestRequest$, () => exports.UpdateABTestResponse$
2898
+ ];
2147
2899
  exports.UpdateBrowserStream$ = [9, n0, _UBS,
2148
2900
  { [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/streams/update", 200] }, () => exports.UpdateBrowserStreamRequest$, () => exports.UpdateBrowserStreamResponse$
2149
2901
  ];