Providers
StepFun
Plugin dostawcy StepFun obsługuje dwa identyfikatory dostawcy:
stepfundla standardowego punktu końcowegostepfun-plandla punktu końcowego Step Plan
Zainstaluj Plugin
Zainstaluj oficjalny Plugin, a następnie uruchom ponownie Gateway:
openclaw plugins install @openclaw/stepfun-provideropenclaw gateway restartOmówienie regionów i punktów końcowych
| Punkt końcowy | Chiny (.com) |
Globalny (.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 |
Zmienna środowiskowa uwierzytelniania: STEPFUN_API_KEY
Wbudowany katalog
Standardowy (stepfun):
| Referencja modelu | Kontekst | Maks. dane wyjściowe | Uwagi |
|---|---|---|---|
stepfun/step-3.5-flash |
262,144 | 65,536 | Domyślny model standardowy |
Step Plan (stepfun-plan):
| Referencja modelu | Kontekst | Maks. dane wyjściowe | Uwagi |
|---|---|---|---|
stepfun-plan/step-3.5-flash |
262,144 | 65,536 | Domyślny model Step Plan |
stepfun-plan/step-3.5-flash-2603 |
262,144 | 65,536 | Dodatkowy model Step Plan |
Pierwsze kroki
Wybierz powierzchnię dostawcy i wykonaj kroki konfiguracji.
Standard
Najlepsze dla: zastosowań ogólnych przez standardowy punkt końcowy StepFun.
Choose your endpoint region
| Wybór uwierzytelniania | Punkt końcowy | Region |
|---|---|---|
stepfun-standard-api-key-intl |
https://api.stepfun.ai/v1 |
Międzynarodowy |
stepfun-standard-api-key-cn |
https://api.stepfun.com/v1 |
Chiny |
Run onboarding
openclaw onboard --auth-choice stepfun-standard-api-key-intlLub dla chińskiego punktu końcowego:
openclaw onboard --auth-choice stepfun-standard-api-key-cnNon-interactive alternative
openclaw onboard --auth-choice stepfun-standard-api-key-intl \ --stepfun-api-key "$STEPFUN_API_KEY"Verify models are available
openclaw models list --provider stepfunReferencje modeli
- Domyślny model:
stepfun/step-3.5-flash
Step Plan
Najlepsze dla: punktu końcowego rozumowania Step Plan.
Choose your endpoint region
| Wybór uwierzytelniania | Punkt końcowy | Region |
|---|---|---|
stepfun-plan-api-key-intl |
https://api.stepfun.ai/step_plan/v1 |
Międzynarodowy |
stepfun-plan-api-key-cn |
https://api.stepfun.com/step_plan/v1 |
Chiny |
Run onboarding
openclaw onboard --auth-choice stepfun-plan-api-key-intlLub dla chińskiego punktu końcowego:
openclaw onboard --auth-choice stepfun-plan-api-key-cnNon-interactive alternative
openclaw onboard --auth-choice stepfun-plan-api-key-intl \ --stepfun-api-key "$STEPFUN_API_KEY"Verify models are available
openclaw models list --provider stepfun-planReferencje modeli
- Domyślny model:
stepfun-plan/step-3.5-flash - Alternatywny model:
stepfun-plan/step-3.5-flash-2603
Konfiguracja zaawansowana
Full config: 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, }, ], }, }, },}Full config: 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, }, ], }, }, },}Notes
- Dostawca jest oficjalnym pakietem zewnętrznym; zainstaluj go przed konfiguracją.
step-3.5-flash-2603jest obecnie udostępniany tylko wstepfun-plan.- Jeden przepływ uwierzytelniania zapisuje profile dopasowane do regionu zarówno dla
stepfun, jak istepfun-plan, więc obie powierzchnie można wykrywać razem. - Użyj
openclaw models listiopenclaw models set <provider/model>, aby sprawdzić lub przełączyć modele.
Powiązane
Model selection
Omówienie wszystkich dostawców, referencji modeli i zachowania przełączania awaryjnego.
Configuration reference
Pełny schemat konfiguracji dostawców, modeli i Pluginów.
Model selection
Jak wybierać i konfigurować modele.
StepFun Platform
Zarządzanie kluczami API StepFun i dokumentacja.
Was this useful?