Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/bedrock_agentcore/memory/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2012,4 +2012,9 @@ def _wrap_configuration(
else:
wrapped_config["reflection"] = reflection

# Pass through any keys the SDK doesn't know about (e.g., selfManagedConfiguration)
for key in config:
if key not in wrapped_config:
wrapped_config[key] = config[key]

return wrapped_config
Loading