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

# CrewAI

> Configure a CrewAI LLM to route through LETHE.

```python crew.py theme={null}
from crewai import LLM

llm = LLM(
    model="openai/lethe",
    base_url="https://asklethe.ai/v1",
    api_key="$LETHE_API_KEY",
)
```

Get `$LETHE_API_KEY` from [Authentication](/api-reference/authentication). CrewAI treats this as an OpenAI-compatible provider, routed to LETHE's [Chat Completions](/api-reference/chat-completions) endpoint.
