Zum Hauptinhalt springen

Documentation Index

Fetch the complete documentation index at: https://docs.openclaw.ai/llms.txt

Use this file to discover all available pages before exploring further.

OpenClaw enthält ein gebündeltes StepFun-Provider-Plugin mit zwei Provider-IDs:
  • stepfun für den Standard-Endpunkt
  • stepfun-plan für den Step-Plan-Endpunkt
Standard und Step Plan sind separate Provider mit unterschiedlichen Endpunkten und Präfixen für Modellreferenzen (stepfun/... vs. stepfun-plan/...). Verwenden Sie einen China-Schlüssel mit den .com-Endpunkten und einen globalen Schlüssel mit den .ai-Endpunkten.

Überblick über Region und Endpunkt

EndpunktChina (.com)Global (.ai)
Standardhttps://api.stepfun.com/v1https://api.stepfun.ai/v1
Step Planhttps://api.stepfun.com/step_plan/v1https://api.stepfun.ai/step_plan/v1
Auth-Env-Var: STEPFUN_API_KEY

Integrierter Katalog

Standard (stepfun):
ModellreferenzKontextMax. AusgabeHinweise
stepfun/step-3.5-flash262,14465,536Standardmodell für Standard
Step Plan (stepfun-plan):
ModellreferenzKontextMax. AusgabeHinweise
stepfun-plan/step-3.5-flash262,14465,536Standardmodell für Step Plan
stepfun-plan/step-3.5-flash-2603262,14465,536Zusätzliches Step-Plan-Modell

Erste Schritte

Wählen Sie Ihre Provider-Oberfläche und folgen Sie den Einrichtungsschritten.
Am besten geeignet für: allgemeine Nutzung über den Standard-Endpunkt von StepFun.
1

Wählen Sie Ihre Endpunktregion

AuthentifizierungsoptionEndpunktRegion
stepfun-standard-api-key-intlhttps://api.stepfun.ai/v1International
stepfun-standard-api-key-cnhttps://api.stepfun.com/v1China
2

Onboarding ausführen

openclaw onboard --auth-choice stepfun-standard-api-key-intl
Oder für den China-Endpunkt:
openclaw onboard --auth-choice stepfun-standard-api-key-cn
3

Nicht-interaktive Alternative

openclaw onboard --auth-choice stepfun-standard-api-key-intl \
  --stepfun-api-key "$STEPFUN_API_KEY"
4

Prüfen, ob Modelle verfügbar sind

openclaw models list --provider stepfun

Modellreferenzen

  • Standardmodell: stepfun/step-3.5-flash

Erweiterte Konfiguration

{
  env: { STEPFUN_API_KEY: "your-key" },
  agents: { defaults: { model: { primary: "stepfun/step-3.5-flash" } } },
  models: {
    mode: "merge",
    providers: {
      stepfun: {
        baseUrl: "https://api.stepfun.ai/v1",
        api: "openai-completions",
        apiKey: "${STEPFUN_API_KEY}",
        models: [
          {
            id: "step-3.5-flash",
            name: "Step 3.5 Flash",
            reasoning: true,
            input: ["text"],
            cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
            contextWindow: 262144,
            maxTokens: 65536,
          },
        ],
      },
    },
  },
}
{
  env: { STEPFUN_API_KEY: "your-key" },
  agents: { defaults: { model: { primary: "stepfun-plan/step-3.5-flash" } } },
  models: {
    mode: "merge",
    providers: {
      "stepfun-plan": {
        baseUrl: "https://api.stepfun.ai/step_plan/v1",
        api: "openai-completions",
        apiKey: "${STEPFUN_API_KEY}",
        models: [
          {
            id: "step-3.5-flash",
            name: "Step 3.5 Flash",
            reasoning: true,
            input: ["text"],
            cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
            contextWindow: 262144,
            maxTokens: 65536,
          },
          {
            id: "step-3.5-flash-2603",
            name: "Step 3.5 Flash 2603",
            reasoning: true,
            input: ["text"],
            cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
            contextWindow: 262144,
            maxTokens: 65536,
          },
        ],
      },
    },
  },
}
  • Der Provider ist mit OpenClaw gebündelt, daher gibt es keinen separaten Installationsschritt für das Plugin.
  • step-3.5-flash-2603 wird derzeit nur auf stepfun-plan bereitgestellt.
  • Ein einzelner Authentifizierungsablauf schreibt regionspassende Profile für stepfun und stepfun-plan, sodass beide Oberflächen gemeinsam erkannt werden können.
  • Verwenden Sie openclaw models list und openclaw models set <provider/model>, um Modelle zu prüfen oder zu wechseln.
Eine breitere Provider-Übersicht finden Sie unter Modell-Provider.

Verwandte Themen

Modellauswahl

Überblick über alle Provider, Modellreferenzen und Failover-Verhalten.

Konfigurationsreferenz

Vollständiges Konfigurationsschema für Provider, Modelle und Plugins.

Modellauswahl

So wählen und konfigurieren Sie Modelle.

StepFun Platform

Verwaltung und Dokumentation von StepFun-API-Schlüsseln.