Skip to main content
LibreChat is joining ClickHouse to power the open-source Agentic Data Stack 🎉 Learn more
LibreChat

ShuttleAI

Configure ShuttleAI as a custom endpoint in LibreChat.

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. Add it to your .env file:

SHUTTLEAI_API_KEY=your-api-key

Configuration

Add the endpoint under endpoints.custom in your 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"]

How is this guide?