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

ShuttleAI

在 LibreChat 中将 ShuttleAI 配置为自定义 endpoint。

ShuttleAI 通过 OpenAI 兼容的 API 提供对其 Shuttle 模型的访问,该 API 在 LibreChat 中用作自定义 endpoint。

获取 API key

ShuttleAI keys page 创建一个密钥。将其添加到你的 .env 文件中:

SHUTTLEAI_API_KEY=your-api-key

配置

在你的 librechat.yaml 中,将 endpoint 添加到 endpoints.custom 下:

    - 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"]

这篇指南怎么样?