Metadata-Version: 2.5
Name: memoria-cloud-sdk
Version: 0.1.0
Summary: Python client for the Memoria Memory API
Requires-Python: >=3.12
Requires-Dist: httpx>=0.28
Requires-Dist: pydantic>=2.11
Description-Content-Type: text/markdown

# Memoria Cloud Python SDK

Typed HTTP client for the Memoria Memory API. Machine auth is a `mem_...` Bearer key.

```bash
pip install memoria-cloud-sdk
```

```python
from memoria_cloud import Memoria

client = Memoria()  # MEMORY_API_URL / MEMORY_API_KEY
client.remember(content="We prefer pytest", session_id="s1")
hits = client.recall(q="pytest")
```

Defaults to `https://memoria-api-jw5g.onrender.com` when `MEMORY_API_URL` is unset.
