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

ShuttleAI

Configura ShuttleAI come endpoint personalizzato in LibreChat.

ShuttleAI fornisce l'accesso ai suoi modelli Shuttle tramite un'API compatibile con OpenAI, utilizzata in LibreChat come endpoint personalizzato.

Ottieni una API key

Crea una chiave dalla pagina delle chiavi di ShuttleAI. Aggiungila al tuo file .env:

SHUTTLEAI_API_KEY=your-api-key

Configurazione

Aggiungi l'endpoint sotto endpoints.custom nel tuo 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"]

Com’è questa guida?