Ana içeriğe atla

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, iki sağlayıcı kimliğine sahip paketlenmiş bir StepFun sağlayıcı Plugin’i içerir:
  • Standart uç nokta için stepfun
  • Step Plan uç noktası için stepfun-plan
Standard ve Step Plan, farklı uç noktaları ve model ref önekleri (stepfun/... ile stepfun-plan/...) olan ayrı sağlayıcılardır. .com uç noktalarıyla China anahtarı, .ai uç noktalarıyla global anahtar kullanın.

Bölge ve uç nokta özeti

Uç noktaChina (.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
Kimlik doğrulama env var: STEPFUN_API_KEY

Yerleşik katalog

Standard (stepfun):
Model refBağlamMaks. çıktıNotlar
stepfun/step-3.5-flash262,14465,536Varsayılan standart model
Step Plan (stepfun-plan):
Model refBağlamMaks. çıktıNotlar
stepfun-plan/step-3.5-flash262,14465,536Varsayılan Step Plan modeli
stepfun-plan/step-3.5-flash-2603262,14465,536Ek Step Plan modeli

Başlarken

Sağlayıcı yüzeyinizi seçin ve kurulum adımlarını izleyin.
En uygun olduğu kullanım: standart StepFun uç noktası üzerinden genel amaçlı kullanım.
1

Uç nokta bölgenizi seçin

Kimlik doğrulama seçimiUç noktaBölge
stepfun-standard-api-key-intlhttps://api.stepfun.ai/v1International
stepfun-standard-api-key-cnhttps://api.stepfun.com/v1China
2

Onboarding çalıştırın

openclaw onboard --auth-choice stepfun-standard-api-key-intl
Veya China uç noktası için:
openclaw onboard --auth-choice stepfun-standard-api-key-cn
3

Etkileşimsiz alternatif

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

Modellerin kullanılabilir olduğunu doğrulayın

openclaw models list --provider stepfun

Model ref’leri

  • Varsayılan model: stepfun/step-3.5-flash

Gelişmiş yapılandırma

{
  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,
          },
        ],
      },
    },
  },
}
  • Sağlayıcı OpenClaw ile paketlenmiş olarak gelir, bu nedenle ayrı bir Plugin yükleme adımı yoktur.
  • step-3.5-flash-2603 şu anda yalnızca stepfun-plan üzerinde sunulur.
  • Tek bir kimlik doğrulama akışı hem stepfun hem de stepfun-plan için bölgeyle eşleşen profiller yazar; böylece iki yüzey birlikte keşfedilebilir.
  • Modelleri incelemek veya değiştirmek için openclaw models list ve openclaw models set <provider/model> kullanın.
Daha geniş sağlayıcı özeti için Model sağlayıcıları bölümüne bakın.

İlgili

Model seçimi

Tüm sağlayıcılara, model ref’lerine ve failover davranışına genel bakış.

Yapılandırma referansı

Sağlayıcılar, modeller ve Plugin’ler için tam yapılandırma şeması.

Model seçimi

Modelleri seçme ve yapılandırma yöntemi.

StepFun Platform

StepFun API anahtarı yönetimi ve dokümantasyonu.