Metadata-Version: 2.4
Name: kortexio-contextmemory
Version: 0.0.1b0
Summary: Thin headers helper for the ContextMemory OpenAI-compatible gateway
License: AGPL-3.0-or-later
Project-URL: Homepage, https://github.com/Kortexio/ContextMemory
Project-URL: Repository, https://github.com/Kortexio/ContextMemory
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# kortexio-contextmemory (Python)

Thin header helper so you do not hand-roll `X-App-Id` / `X-Session-Id` headers.

```bash
pip install kortexio-contextmemory
```

```python
from openai import OpenAI
from contextmemory import openai_client_kwargs

client = OpenAI(**openai_client_kwargs(
    base_url="http://localhost:5100/v1",
    api_key="cm_live_...",
    app_id="demo-dev",
    user_id="user-42",
    session_id="sess-abc",
))
```
