Metadata-Version: 2.4
Name: llama-index-memory-recollect
Version: 0.1.0
Summary: LlamaIndex memory integration for Recollect
License-Expression: Apache-2.0
Requires-Python: >=3.10
Requires-Dist: llama-index-core>=0.11.0
Requires-Dist: recollect-ai<0.3.0,>=0.2.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# llama-index-memory-recollect

LlamaIndex `BaseMemory` adapter for [Recollect](https://github.com/cobusgreyling/recollect).

```bash
pip install llama-index-memory-recollect
```

```python
from llama_index.memory.recollect import RecollectMemory

memory = RecollectMemory.from_config(
    context={"user_id": "alice"},
    config=RecollectConfig.local_dev(),
)
```