# ShuttleAI (https://www.librechat.ai/docs/configuration/librechat_yaml/ai_endpoints/shuttleai)

ShuttleAI provides access to its Shuttle models through an OpenAI-compatible API, used in LibreChat as a custom endpoint.

## Get an API key

Create a key from the [ShuttleAI keys page](https://shuttleai.com/keys). Add it to your `.env` file:

```bash filename=".env"
SHUTTLEAI_API_KEY=your-api-key
```

## Configuration

Add the endpoint under `endpoints.custom` in your `librechat.yaml`:

```yaml filename="librechat.yaml"
    - name: "ShuttleAI"
      apiKey: "${SHUTTLEAI_API_KEY}"
      baseURL: "https://api.shuttleai.com/v1"
      models:
        default: [
          "shuttle-2.5", "shuttle-2.5-mini"
          ]
        fetch: true
      titleConvo: true
      titleModel: "shuttle-2.5-mini"
      summarize: false
      summaryModel: "shuttle-2.5-mini"
      modelDisplayLabel: "ShuttleAI"
      dropParams: ["user", "stop"]
```
