Providers
StepFun
Das StepFun-Provider-Plugin unterstützt zwei Provider-IDs:
stepfunfür den Standardendpunktstepfun-planfür den Step-Plan-Endpunkt
Plugin installieren
Installieren Sie das offizielle Plugin und starten Sie dann Gateway neu:
openclaw plugins install @openclaw/stepfun-provideropenclaw gateway restartÜbersicht über Region und Endpunkt
| Endpunkt | China (.com) |
Global (.ai) |
|---|---|---|
| Standard | https://api.stepfun.com/v1 |
https://api.stepfun.ai/v1 |
| Step Plan | https://api.stepfun.com/step_plan/v1 |
https://api.stepfun.ai/step_plan/v1 |
Auth-Umgebungsvariable: STEPFUN_API_KEY
Integrierter Katalog
Standard (stepfun):
| Modellref | Kontext | Maximale Ausgabe | Hinweise |
|---|---|---|---|
stepfun/step-3.5-flash |
262,144 | 65,536 | Standardmodell |
Step Plan (stepfun-plan):
| Modellref | Kontext | Maximale Ausgabe | Hinweise |
|---|---|---|---|
stepfun-plan/step-3.5-flash |
262,144 | 65,536 | Standardmodell für Step Plan |
stepfun-plan/step-3.5-flash-2603 |
262,144 | 65,536 | Zusätzliches Step-Plan-Modell |
Erste Schritte
Wählen Sie Ihre Provider-Oberfläche aus und folgen Sie den Einrichtungsschritten.
Standard
Am besten für: allgemeine Nutzung über den Standardendpunkt von StepFun.
Endpunktregion auswählen
| Auth-Auswahl | Endpunkt | Region |
|---|---|---|
stepfun-standard-api-key-intl |
https://api.stepfun.ai/v1 |
International |
stepfun-standard-api-key-cn |
https://api.stepfun.com/v1 |
China |
Onboarding ausführen
openclaw onboard --auth-choice stepfun-standard-api-key-intlOder für den China-Endpunkt:
openclaw onboard --auth-choice stepfun-standard-api-key-cnNicht interaktive Alternative
openclaw onboard --auth-choice stepfun-standard-api-key-intl \ --stepfun-api-key "$STEPFUN_API_KEY"Prüfen, ob Modelle verfügbar sind
openclaw models list --provider stepfunModellrefs
- Standardmodell:
stepfun/step-3.5-flash
Step Plan
Am besten für: Step-Plan-Reasoning-Endpunkt.
Endpunktregion auswählen
| Auth-Auswahl | Endpunkt | Region |
|---|---|---|
stepfun-plan-api-key-intl |
https://api.stepfun.ai/step_plan/v1 |
International |
stepfun-plan-api-key-cn |
https://api.stepfun.com/step_plan/v1 |
China |
Onboarding ausführen
openclaw onboard --auth-choice stepfun-plan-api-key-intlOder für den China-Endpunkt:
openclaw onboard --auth-choice stepfun-plan-api-key-cnNicht interaktive Alternative
openclaw onboard --auth-choice stepfun-plan-api-key-intl \ --stepfun-api-key "$STEPFUN_API_KEY"Prüfen, ob Modelle verfügbar sind
openclaw models list --provider stepfun-planModellrefs
- Standardmodell:
stepfun-plan/step-3.5-flash - Alternatives Modell:
stepfun-plan/step-3.5-flash-2603
Erweiterte Konfiguration
Vollständige Konfiguration: Standard-Provider
{ 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, }, ], }, }, },}Vollständige Konfiguration: Step-Plan-Provider
{ 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, }, ], }, }, },}Hinweise
- Der Provider ist ein offizielles externes Paket; installieren Sie es vor der Einrichtung.
step-3.5-flash-2603wird derzeit nur unterstepfun-planbereitgestellt.- Ein einzelner Auth-Flow schreibt regions passende Profile sowohl für
stepfunals auch fürstepfun-plan, sodass beide Oberflächen gemeinsam entdeckt werden können. - Verwenden Sie
openclaw models listundopenclaw models set <provider/model>, um Modelle zu prüfen oder zu wechseln.
Verwandte Themen
Was this useful?