@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.
- package/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +284 -268
- package/dist-cjs/models/BedrockAgentCoreServiceException.js +4 -8
- package/dist-cjs/models/errors.js +29 -46
- package/dist-cjs/runtimeConfig.browser.js +24 -28
- package/dist-cjs/runtimeConfig.js +32 -36
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +21 -25
- package/dist-cjs/schemas/schemas_0.js +1241 -692
- package/dist-es/models/enums.js +35 -0
- package/dist-es/schemas/schemas_0.js +216 -45
- package/dist-types/commands/CreateABTestCommand.d.ts +3 -0
- package/dist-types/commands/GetBatchEvaluationCommand.d.ts +96 -0
- package/dist-types/commands/GetRecommendationCommand.d.ts +9 -0
- package/dist-types/commands/ListBatchEvaluationsCommand.d.ts +6 -0
- package/dist-types/commands/ListEventsCommand.d.ts +1 -1
- package/dist-types/commands/ListMemoryExtractionJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListMemoryRecordsCommand.d.ts +1 -1
- package/dist-types/commands/StartBatchEvaluationCommand.d.ts +25 -0
- package/dist-types/commands/StartRecommendationCommand.d.ts +16 -0
- package/dist-types/models/enums.d.ts +43 -0
- package/dist-types/models/models_0.d.ts +470 -436
- package/dist-types/models/models_1.d.ts +433 -2
- package/dist-types/schemas/schemas_0.d.ts +16 -0
- package/dist-types/ts3.4/commands/ListEventsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMemoryExtractionJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMemoryRecordsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +37 -0
- package/dist-types/ts3.4/models/models_0.d.ts +122 -133
- package/dist-types/ts3.4/models/models_1.d.ts +138 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
- package/package.json +8 -8
package/dist-es/models/enums.js
CHANGED
|
@@ -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",
|