├── .env.example ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── example.ipynb ├── img ├── memory_graph.png └── memory_interactions.png ├── langgraph.json ├── memory_service ├── __init__.py ├── _constants.py ├── _schemas.py ├── _settings.py ├── _utils.py └── graph.py ├── poetry.lock ├── pyproject.toml └── tests ├── conftest.py └── evals └── test_memories.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/README.md -------------------------------------------------------------------------------- /example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/example.ipynb -------------------------------------------------------------------------------- /img/memory_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/img/memory_graph.png -------------------------------------------------------------------------------- /img/memory_interactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/img/memory_interactions.png -------------------------------------------------------------------------------- /langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/langgraph.json -------------------------------------------------------------------------------- /memory_service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/memory_service/__init__.py -------------------------------------------------------------------------------- /memory_service/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/memory_service/_constants.py -------------------------------------------------------------------------------- /memory_service/_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/memory_service/_schemas.py -------------------------------------------------------------------------------- /memory_service/_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/memory_service/_settings.py -------------------------------------------------------------------------------- /memory_service/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/memory_service/_utils.py -------------------------------------------------------------------------------- /memory_service/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/memory_service/graph.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/evals/test_memories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/langgraph-memory/HEAD/tests/evals/test_memories.py --------------------------------------------------------------------------------