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

# Use OpenClaw with abliteration.ai

> Use OpenClaw (open-source agent framework, 100+ skills) with abliteration.ai.

**To use OpenClaw with abliteration.ai**, set `OPENAI_BASE_URL=https://api.abliteration.ai/v1` and `OPENAI_API_KEY` to your `ak_...` key. OpenClaw is an open-source agent framework with 100+ skills.

## Install

```sh theme={"system"}
pip install openclaw
```

## Configure

```sh theme={"system"}
export OPENAI_BASE_URL=https://api.abliteration.ai/v1
export OPENAI_API_KEY=$ABLIT_KEY

openclaw --model abliterated-model
```

## Python SDK

```python theme={"system"}
from openclaw import Agent

agent = Agent(
    model="abliterated-model",
    base_url="https://api.abliteration.ai/v1",
    api_key=os.environ["ABLIT_KEY"],
)

agent.run("Summarize today's GitHub notifications")
```

## Notes

* Policy rules on your API key apply to every skill invocation.
* For governance across multiple OpenClaw instances, scope a [project key](/authentication).
