Providers
StepFun
StepFun, iki sağlayıcı kimliğiyle harici bir resmi Plugin (@openclaw/stepfun-provider) olarak sunulur:
- Standart uç nokta için
stepfun - Step Plan uç noktası için
stepfun-plan
Plugin'i yükleme
openclaw plugins install @openclaw/stepfun-provideropenclaw gateway restartBölge ve uç nokta genel görünümü
| Uç nokta | Çin (.com) |
Küresel (.ai) |
|---|---|---|
| Standart | 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
Standart (stepfun):
| Model referansı | Bağlam | En fazla çı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ü girdisi desteği |
Step Plan (stepfun-plan):
| Model referansı | Bağlam | En fazla çı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ü girdisi desteği |
stepfun-plan/step-3.5-flash-2603 |
262,144 | 65,536 | Ek Step Plan modeli |
Başlarken
Standart
Standart StepFun uç noktası üzerinden genel amaçlı kullanım için idealdir.
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 idealdir.
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 her iki yüzey de tek bir ilk kurulum çalıştırmasından sonra birlikte keşfedilir.
Gelişmiş yapılandırma
Tam yapılandırma: Standart sağlayıcı
{ 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, compat: { supportsStore: false, supportsDeveloperRole: false, supportsUsageInStreaming: false, supportsReasoningEffort: true, supportsStrictMode: false, supportedReasoningEfforts: ["low", "medium", "high"], maxTokensField: "max_tokens", reasoningEffortMap: { off: "low", none: "low", minimal: "low", low: "low", medium: "medium", high: "high", xhigh: "high", adaptive: "high", max: "high", }, }, }, { 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, compat: { supportsStore: false, supportsDeveloperRole: false, supportsUsageInStreaming: false, supportsReasoningEffort: true, supportsStrictMode: false, supportedReasoningEfforts: ["low", "medium", "high"], maxTokensField: "max_tokens", reasoningEffortMap: { off: "low", none: "low", minimal: "low", low: "low", medium: "medium", high: "high", xhigh: "high", adaptive: "high", max: "high", }, }, }, { 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ü girdisini kabul eder. StepFun API'si videoyu da destekler ancak video henüz OpenClaw'da bir model girdi yöntemi değildir.- Step 3.7;
low,mediumvehighakıl yürütme düzeylerini destekler. Modelin akıl yürütmesiz bir modu olmadığından/think off,lowolarak 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>komutlarını kullanın.
İlgili konular
Tüm sağlayıcılara, model referanslarına ve yük devretme davranışına genel bakış.
Sağlayıcılar, modeller ve Plugin'ler 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.