跳轉到主要內容

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 包含一個內建的 StepFun 供應商 Plugin,具備兩個供應商 ID:
  • stepfun 用於標準端點
  • stepfun-plan 用於 Step Plan 端點
標準與 Step Plan 是不同的供應商,具有不同的端點與模型 ref 前綴(stepfun/...stepfun-plan/...)。請搭配 .com 端點使用中國金鑰,並搭配 .ai 端點使用全球金鑰。

區域與端點概覽

端點中國 (.com)全球 (.ai)
標準https://api.stepfun.com/v1https://api.stepfun.ai/v1
Step Planhttps://api.stepfun.com/step_plan/v1https://api.stepfun.ai/step_plan/v1
驗證環境變數:STEPFUN_API_KEY

內建目錄

標準 (stepfun):
模型 refContext最大輸出備註
stepfun/step-3.5-flash262,14465,536預設標準模型
Step Plan (stepfun-plan):
模型 refContext最大輸出備註
stepfun-plan/step-3.5-flash262,14465,536預設 Step Plan 模型
stepfun-plan/step-3.5-flash-2603262,14465,536額外的 Step Plan 模型

開始使用

選擇你的供應商介面,並依照設定步驟操作。
**最適合:**透過標準 StepFun 端點進行一般用途使用。
1

選擇你的端點區域

驗證選項端點區域
stepfun-standard-api-key-intlhttps://api.stepfun.ai/v1國際
stepfun-standard-api-key-cnhttps://api.stepfun.com/v1中國
2

執行 onboarding

openclaw onboard --auth-choice stepfun-standard-api-key-intl
或使用中國端點:
openclaw onboard --auth-choice stepfun-standard-api-key-cn
3

非互動式替代方案

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

確認模型可用

openclaw models list --provider stepfun

模型 ref

  • 預設模型:stepfun/step-3.5-flash

進階設定

{
  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,
          },
        ],
      },
    },
  },
}
  • 此供應商已內建於 OpenClaw,因此沒有單獨的 Plugin 安裝步驟。
  • step-3.5-flash-2603 目前僅在 stepfun-plan 上公開。
  • 單一驗證流程會為 stepfunstepfun-plan 寫入符合區域的設定檔,因此兩個介面可以一起被探索到。
  • 使用 openclaw models listopenclaw models set <provider/model> 來檢查或切換模型。
如需更廣泛的供應商概覽,請參閱模型供應商

相關

模型選擇

所有供應商、模型 ref 與容錯移轉行為的概覽。

設定參考

供應商、模型與 Plugin 的完整設定結構描述。

模型選擇

如何選擇與設定模型。

StepFun Platform

StepFun API 金鑰管理與文件。