Metadata-Version: 2.4
Name: getmem-ai
Version: 0.1.1
Summary: Persistent memory API for AI agents — getmem.ai
Author-email: "getmem.ai" <hello@getmem.ai>
License: MIT
Project-URL: Homepage, https://getmem.ai
Project-URL: Documentation, https://getmem.ai
Project-URL: Repository, https://github.com/getmem-ai/getmem
Keywords: ai,memory,agents,llm,rag,context
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# getmem-ai

Persistent memory API for AI agents. Two API calls — your agent remembers everything.

```bash
pip install getmem-ai
```

```python
import getmem_ai as getmem

mem = getmem.init("gm_your_api_key")

# After each turn — automatic extraction
mem.ingest("user_123", messages=messages)

# Before each turn — intelligent context
context = mem.get("user_123", query=user_message)
```

**[Get started → platform.getmem.ai](https://platform.getmem.ai)**

Docs: [getmem.ai](https://getmem.ai) · PyPI: [getmem-ai](https://pypi.org/project/getmem-ai/)
