# Configure Your API Keys

### Via UI:

<figure><img src="/files/hNWAuTARZ0vlMcijYf1z" 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
)
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.raga.ai/ragaai-catalyst/concepts/configure-your-api-keys.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
