# Configure Your API Keys

### Via UI:

<figure><img src="https://1811327582-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FYbIiNdp1QbG4avl7VShw%2Fuploads%2FQkHwMGrJSZa6OhWpaTM0%2FAPIKeyonCatalystPlatform-ezgif.com-video-to-gif-converter.gif?alt=media&#x26;token=cc3c016c-e770-4dfc-aad5-f0e8e9defd60" alt=""><figcaption></figcaption></figure>

To start running evaluations on RagaAI Catalyst, you need specify the API keys to your LLM models. Follow these steps to set your API keys:

1. Navigate to Settings -> API Keys.
2. Enter your API key against the relevant supported model names by clicking "Edit"
3. Click "Save" to store the API Key(s).

### Via SDK:

Alternatively, you can also define your API keys on the SDK using the following commands:

```python
from ragaai_catalyst import RagaAICatalyst

catalyst = RagaAICatalyst(
    api_keys={"OPENAI_API_KEY": OPENAI_API_KEY} #similarly for other supported keys
)
```
