@aws-sdk/client-bedrock-agent-runtime 3.1111.0 → 3.1113.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.
@@ -70,11 +70,28 @@ export const GuardrailAction = {
70
70
  INTERVENED: "INTERVENED",
71
71
  NONE: "NONE",
72
72
  };
73
+ export const AgenticRetrieveMemoryPersistenceMode = {
74
+ DEFAULT: "DEFAULT",
75
+ NONE: "NONE",
76
+ };
77
+ export const AgenticRetrieveMemoryMetadataFilterOperator = {
78
+ AFTER: "AFTER",
79
+ BEFORE: "BEFORE",
80
+ CONTAINS: "CONTAINS",
81
+ EQUALS_TO: "EQUALS_TO",
82
+ EXISTS: "EXISTS",
83
+ GREATER_THAN: "GREATER_THAN",
84
+ GREATER_THAN_OR_EQUALS: "GREATER_THAN_OR_EQUALS",
85
+ LESS_THAN: "LESS_THAN",
86
+ LESS_THAN_OR_EQUALS: "LESS_THAN_OR_EQUALS",
87
+ NOT_EXISTS: "NOT_EXISTS",
88
+ };
73
89
  export const ConversationRole = {
74
90
  ASSISTANT: "assistant",
75
91
  USER: "user",
76
92
  };
77
93
  export const AgenticRetrieveType = {
94
+ BEDROCK_AGENT_CORE_MEMORY: "BedrockAgentCoreMemory",
78
95
  BEDROCK_KNOWLEDGE_BASE: "BedrockKnowledgeBase",
79
96
  };
80
97
  export const AgenticRetrieveStatus = {
@@ -86,6 +103,7 @@ export const AgenticRetrieveStep = {
86
103
  FULL_DOCUMENT_EXPANSION: "FullDocumentExpansion",
87
104
  PLANNING: "Planning",
88
105
  RETRIEVAL: "Retrieval",
106
+ SESSION_HISTORY_LOAD: "SessionHistoryLoad",
89
107
  SPECULATIVE_RETRIEVAL: "SpeculativeRetrieval",
90
108
  };
91
109
  export const GuardrailContentPolicyAction = {