Metadata-Version: 2.4
Name: flux7-memory
Version: 0.5.0
Summary: Python SDK for mem7 — governed memory substrate for AI agents
Project-URL: Homepage, https://github.com/KTCrisis/flux7-memory
Project-URL: Repository, https://github.com/KTCrisis/flux7-memory
License-Expression: Apache-2.0
Requires-Python: >=3.10
Requires-Dist: requests>=2.28
Description-Content-Type: text/markdown

# flux7-memory

Python client for [mem7](https://github.com/KTCrisis/flux7-memory) — governed memory substrate for AI agents.

```bash
pip install flux7-memory
```

```python
from mem7 import Mem7

m = Mem7("http://localhost:9070", token="my-token")
m.store("deploy.decision", "approved by ops lead", tags=["decision"], agent="supervisor")
results = m.search("deployment approval", limit=5)
```
