@aws-sdk/client-bedrock-agentcore 3.1067.0 → 3.1069.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 (34) hide show
  1. package/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  2. package/dist-cjs/endpoint/bdd.js +2 -5
  3. package/dist-cjs/endpoint/endpointResolver.js +7 -11
  4. package/dist-cjs/index.js +284 -268
  5. package/dist-cjs/models/BedrockAgentCoreServiceException.js +4 -8
  6. package/dist-cjs/models/errors.js +29 -46
  7. package/dist-cjs/runtimeConfig.browser.js +24 -28
  8. package/dist-cjs/runtimeConfig.js +32 -36
  9. package/dist-cjs/runtimeConfig.native.js +4 -7
  10. package/dist-cjs/runtimeConfig.shared.js +21 -25
  11. package/dist-cjs/schemas/schemas_0.js +1241 -692
  12. package/dist-es/models/enums.js +35 -0
  13. package/dist-es/schemas/schemas_0.js +216 -45
  14. package/dist-types/commands/CreateABTestCommand.d.ts +3 -0
  15. package/dist-types/commands/GetBatchEvaluationCommand.d.ts +96 -0
  16. package/dist-types/commands/GetRecommendationCommand.d.ts +9 -0
  17. package/dist-types/commands/ListBatchEvaluationsCommand.d.ts +6 -0
  18. package/dist-types/commands/ListEventsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListMemoryExtractionJobsCommand.d.ts +1 -1
  20. package/dist-types/commands/ListMemoryRecordsCommand.d.ts +1 -1
  21. package/dist-types/commands/StartBatchEvaluationCommand.d.ts +25 -0
  22. package/dist-types/commands/StartRecommendationCommand.d.ts +16 -0
  23. package/dist-types/models/enums.d.ts +43 -0
  24. package/dist-types/models/models_0.d.ts +470 -436
  25. package/dist-types/models/models_1.d.ts +433 -2
  26. package/dist-types/schemas/schemas_0.d.ts +16 -0
  27. package/dist-types/ts3.4/commands/ListEventsCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/ListMemoryExtractionJobsCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/ListMemoryRecordsCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/models/enums.d.ts +37 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +122 -133
  32. package/dist-types/ts3.4/models/models_1.d.ts +138 -2
  33. package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
  34. package/package.json +8 -8
@@ -14,6 +14,41 @@ export const ABTestStatus = {
14
14
  UPDATE_FAILED: "UPDATE_FAILED",
15
15
  UPDATING: "UPDATING",
16
16
  };
17
+ export const InsightsFailureCategory = {
18
+ CODING_DEPENDENCY_ISSUES: "coding-use-case-specific-failure-types-category-dependency-issues",
19
+ CODING_EDGE_CASE_OVERSIGHTS: "coding-use-case-specific-failure-types-category-edge-case-oversights",
20
+ CONFIGURATION_MISMATCH_TOOL_DEFINITION: "configuration-mismatch-category-tool-definition",
21
+ CONTEXT_HANDLING_FAILURES: "context-handling-error-category-context-handling-failures",
22
+ EXECUTION_ERROR_AUTHENTICATION: "execution-error-category-authentication",
23
+ EXECUTION_ERROR_ENVIRONMENT: "execution-error-category-environment",
24
+ EXECUTION_ERROR_FORMATTING: "execution-error-category-formatting",
25
+ EXECUTION_ERROR_RATE_LIMITING: "execution-error-category-rate-limiting",
26
+ EXECUTION_ERROR_RESOURCE_EXHAUSTION: "execution-error-category-resource-exhaustion",
27
+ EXECUTION_ERROR_RESOURCE_NOT_FOUND: "execution-error-category-resource-not-found",
28
+ EXECUTION_ERROR_SERVICE_ERRORS: "execution-error-category-service-errors",
29
+ EXECUTION_ERROR_TIMEOUT: "execution-error-category-timeout",
30
+ EXECUTION_ERROR_TOOL_SCHEMA: "execution-error-category-tool-schema",
31
+ HALLUCINATION_CAPABILITIES: "hallucination-category-hall-capabilities",
32
+ HALLUCINATION_FABRICATE_TOOL_OUTPUTS: "hallucination-category-fabricate-tool-outputs",
33
+ HALLUCINATION_HISTORY: "hallucination-category-hall-history",
34
+ HALLUCINATION_MISUNDERSTAND: "hallucination-category-hall-misunderstand",
35
+ HALLUCINATION_PARAMS: "hallucination-category-hall-params",
36
+ HALLUCINATION_USAGE: "hallucination-category-hall-usage",
37
+ INCORRECT_ACTIONS_CLARIFICATION: "incorrect-actions-category-clarification",
38
+ INCORRECT_ACTIONS_INAPPROPRIATE_INFO_REQUEST: "incorrect-actions-category-inappropriate-info-request",
39
+ INCORRECT_ACTIONS_POOR_INFORMATION_RETRIEVAL: "incorrect-actions-category-poor-information-retrieval",
40
+ INCORRECT_ACTIONS_TOOL_SELECTION: "incorrect-actions-category-tool-selection",
41
+ LLM_OUTPUT_NONSENSICAL: "llm-output-category-nonsensical",
42
+ ORCHESTRATION_GOAL_DEVIATION: "orchestration-related-errors-category-goal-deviation",
43
+ ORCHESTRATION_PREMATURE_TERMINATION: "orchestration-related-errors-category-premature-termination",
44
+ ORCHESTRATION_REASONING_MISMATCH: "orchestration-related-errors-category-reasoning-mismatch",
45
+ ORCHESTRATION_UNAWARE_TERMINATION: "orchestration-related-errors-category-unaware-termination",
46
+ REPETITIVE_BEHAVIOR_INFO: "repetitive-behavior-category-repetition-info",
47
+ REPETITIVE_BEHAVIOR_STEP: "repetitive-behavior-category-step-repetition",
48
+ REPETITIVE_BEHAVIOR_TOOL: "repetitive-behavior-category-repetition-tool",
49
+ TASK_INSTRUCTION_NON_COMPLIANCE: "task-instruction-category-non-compliance",
50
+ TASK_INSTRUCTION_PROBLEM_ID: "task-instruction-category-problem-id",
51
+ };
17
52
  export const ValidationExceptionReason = {
18
53
  CANNOT_PARSE: "CannotParse",
19
54
  FIELD_VALIDATION_FAILED: "FieldValidationFailed",