Metadata-Version: 2.4
Name: graphe-sdk
Version: 0.1.1
Summary: Official Python client for the Graphe API
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.27.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0.0; extra == "dev"
Requires-Dist: respx>=0.21.0; extra == "dev"

# graphe-sdk

Official Python client for the [Graphe](https://graphe.dev) API.

Graphe gives AI agents durable shared memory: ingest activity, query project state, search context, and trace provenance across runs and tools.

## Install

```bash
pip install graphe-sdk
```

## Quick start

```bash
export GRAPHE_API_BASE=https://api.yourdomain.com
export GRAPHE_API_KEY=graphe_live_...
```

```python
from graphe_sdk import GrapheClient, GrapheConfig

config = GrapheConfig.from_env()
client = GrapheClient(config.base_url, api_key=config.api_key)
print(client.get_health())
```

## Documentation

- [Connecting clients](https://github.com/ShauryaVM/KG-Idea/blob/main/docs/connecting-clients.md) — env vars, CLI, and MCP
- [API reference](https://github.com/ShauryaVM/KG-Idea/blob/main/API.md)
