Skip to content

Different memory providers #971

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ jobs:
run: |
uv run pytest ./tests/test_memory.py
if: ${{ success() || failure() }}

- name: External Storage Memory tests
run: |
uv run pytest ./tests/test_external_storage_memory.py
if: ${{ success() || failure() }}

- name: Monitoring tests
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
logs
tmp
wandb
memorystorage

# Data
data
Expand Down
2 changes: 2 additions & 0 deletions docs/source/en/_toctree.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
title: 🛡️ Secure code execution
- local: tutorials/memory
title: 📚 Manage your agent's memory
- local: tutorials/memory_providers
title: 🔌 Using different memory providers
- title: Conceptual guides
sections:
- local: conceptual_guides/intro_agents
Expand Down
Loading