Metadata-Version: 2.4
Name: aniate
Version: 0.1.0
Summary: Give your LLM persistent memory with a simple middleware pattern.
Project-URL: Homepage, https://aniate.com
Project-URL: Repository, https://github.com/aniate/engram
Author-email: Kabir <kabir@aniate.com>
License: MIT
Requires-Dist: requests>=2.25.0
Description-Content-Type: text/markdown

# Aniate Engram Python SDK

Give your LLM persistent memory with a simple middleware pattern.

## Installation

```bash
pip install aniate
```

## Usage

```python
from aniate import Engram

# 1. Initialize
engram = Engram(api_key="an_xxxxxxxx")

# 2. Create Memory
memory = engram.memory("my_knowledge")

# 3. Store knowledge
memory.store("Tesla was founded by Elon Musk")

# 4. Query with semantic search
results = memory.query("electric car companies", top_k=5)
print(results)
```
