> ## Documentation Index
> Fetch the complete documentation index at: https://docs.starlight-search.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Install the Reflect SDK for Python.

```bash theme={null}
pip install reflect-sdk
```

## Verify installation

```python theme={null}
from reflect_sdk import ReflectClient

client = ReflectClient(
    api_key="rf_live_...",
    project_id="my-project",
)
print(client.health())
# {"status": "ok"}
```
