@aws-sdk/client-bedrock-agentcore 3.1037.0 → 3.1039.0

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