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

# repr llm

> Configure Language Models

Configure which LLM provider repr uses.

## Usage

```bash theme={null}
repr llm [ACTION]
```

## Actions

### `configure`

Interactive wizard to set up a local LLM (Ollama) or custom endpoint.

```bash theme={null}
repr llm configure
```

### `test`

Test the connection to the currently configured LLM.

```bash theme={null}
repr llm test
```

### `add`

Add a BYOK (Bring Your Own Key) provider. Your key is stored in the OS keychain.

```bash theme={null}
repr llm add openai
repr llm add anthropic
```

### `use`

Set the default generation mode.

```bash theme={null}
repr llm use local
repr llm use cloud
repr llm use byok:openai
```
