Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ select = [

[tool.ruff.lint.per-file-ignores]
"!src/**/*.py" = ["D"]
"src/bedrock_agentcore/memory/metadata-workflow.ipynb" = ["E501"]

[tool.ruff.lint.pydocstyle]
convention = "google"
Expand Down
7 changes: 7 additions & 0 deletions src/bedrock_agentcore/memory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ conversation handling.
- [Branch Management](#branch-management)
- [Session and Actor Management](#session-and-actor-management)
- [Memory Record Management](#memory-record-management)
- [Event Management with Metadata](#event-management-with-metadata)
- [Alternative Pattern: Separated Operations](#alternative-pattern-separated-operations)
- [Error Handling](#error-handling)
- [Common Exceptions](#common-exceptions)
Expand Down Expand Up @@ -312,6 +313,12 @@ print(f"Record content: {record.content}")
session.delete_memory_record("record-id-123")
```

### Event Management with Metadata

Events can now be managed by defining custom metadata.

Learn more here!: [Working example](src/bedrock_agentcore/memory/metadata-workflow.ipynb)

### Alternative Pattern: Separated Operations

```python
Expand Down
Loading