Providers
StepFun
StepFun, iki sağlayıcı kimliğine sahip harici bir resmî plugin (@openclaw/stepfun-provider) olarak sunulur:
Standart uç nokta için
stepfunStep Plan uç noktası içinstepfun-plan
Plugini yükleme
openclaw plugins install @openclaw/stepfun-provideropenclaw gateway restartBölge ve uç noktalara genel bakış
| Uç nokta | Çin (.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 |
Kimlik doğrulama ortam değişkeni: STEPFUN_API_KEY
Yerleşik katalog
Standard (stepfun):
| Model başvurusu | Bağlam | Maks. çıktı | Notlar |
|---|---|---|---|
stepfun/step-3.5-flash |
262,144 | 65,536 | Varsayılan standart model |
stepfun/step-3.7-flash |
262,144 | 262,144 | Çok modlu görüntü girişi desteği |
Step Plan (stepfun-plan):
| Model başvurusu | Bağlam | Maks. çıktı | Notlar |
|---|---|---|---|
stepfun-plan/step-3.5-flash |
262,144 | 65,536 | Varsayılan Step Plan modeli |
stepfun-plan/step-3.7-flash |
262,144 | 262,144 | Çok modlu görüntü girişi desteği |
stepfun-plan/step-3.5-flash-2603 |
262,144 | 65,536 | Ek Step Plan modeli |
Başlarken
Standard
Standart StepFun uç noktası üzerinden genel amaçlı kullanım için en uygunudur.
Uç nokta bölgenizi seçin
| Kimlik doğrulama seçimi | Uç nokta | Bölge |
|---|---|---|
stepfun-standard-api-key-intl |
https://api.stepfun.ai/v1 |
Uluslararası |
stepfun-standard-api-key-cn |
https://api.stepfun.com/v1 |
Çin |
İlk kurulumu çalıştırın
openclaw onboard --auth-choice stepfun-standard-api-key-intlÇin uç noktası:
openclaw onboard --auth-choice stepfun-standard-api-key-cnEtkileşimsiz alternatif
openclaw onboard --auth-choice stepfun-standard-api-key-intl \ --stepfun-api-key "$STEPFUN_API_KEY"Modellerin kullanılabilir olduğunu doğrulayın
openclaw models list --provider stepfunVarsayılan model: stepfun/step-3.5-flash
Alternatif model: stepfun/step-3.7-flash
Step Plan
Step Plan akıl yürütme uç noktası için en uygunudur.
Uç nokta bölgenizi seçin
| Kimlik doğrulama seçimi | Uç nokta | Bölge |
|---|---|---|
stepfun-plan-api-key-intl |
https://api.stepfun.ai/step_plan/v1 |
Uluslararası |
stepfun-plan-api-key-cn |
https://api.stepfun.com/step_plan/v1 |
Çin |
İlk kurulumu çalıştırın
openclaw onboard --auth-choice stepfun-plan-api-key-intlÇin uç noktası:
openclaw onboard --auth-choice stepfun-plan-api-key-cnEtkileşimsiz alternatif
openclaw onboard --auth-choice stepfun-plan-api-key-intl \ --stepfun-api-key "$STEPFUN_API_KEY"Modellerin kullanılabilir olduğunu doğrulayın
openclaw models list --provider stepfun-planVarsayılan model: stepfun-plan/step-3.5-flash
Alternatif modeller: stepfun-plan/step-3.7-flash, stepfun-plan/step-3.5-flash-2603
Tek bir kimlik doğrulama akışı hem stepfun hem de stepfun-plan için bölgeyle eşleşen profiller yazar; böylece tek bir ilk kurulum çalıştırmasından sonra her iki yüzey de birlikte keşfedilir.
Gelişmiş yapılandırma
Tam yapılandırma: Standard sağlayıcısı
{ 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.7-flash", name: "Step 3.7 Flash", reasoning: true, input: ["text", "image"], thinkingLevelMap: { off: "low", minimal: "low", xhigh: "high", max: "high" }, cost: { input: 0.2, output: 1.15, cacheRead: 0.04, cacheWrite: 0 }, contextWindow: 262144, maxTokens: 262144, }, { 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, }, ], }, }, },}Tam yapılandırma: Step Plan sağlayıcısı
{ 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.7-flash", name: "Step 3.7 Flash", reasoning: true, input: ["text", "image"], thinkingLevelMap: { off: "low", minimal: "low", xhigh: "high", max: "high" }, cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 }, contextWindow: 262144, maxTokens: 262144, }, { 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, }, ], }, }, },}Notlar
step-3.7-flash, OpenClaw üzerinden metin ve görüntü girişini kabul eder. StepFun API'si videoyu da destekler ancak video henüz OpenClaw'da bir model giriş modalitesi değildir.- Step 3.7;
low,mediumvehighakıl yürütme çabasını destekler. Modelin akıl yürütmesiz bir modu olmadığından/think off,lowile eşlenir. step-3.5-flash-2603şu anda yalnızcastepfun-planüzerinde sunulur.- Modelleri incelemek veya değiştirmek için
openclaw models listveopenclaw models set <provider/model>kullanın.
İlgili içerikler
Tüm sağlayıcılara, model başvurularına ve yük devretme davranışına genel bakış.
Sağlayıcılar, modeller ve pluginler için tam yapılandırma şeması.
Modellerin nasıl seçileceği ve yapılandırılacağı.
StepFun API anahtarı yönetimi ve belgeleri.