Providers
StepFun
StepFun は、2 つのプロバイダー ID を持つ外部公式 Plugin(@openclaw/stepfun-provider)として提供されます。
stepfun:標準エンドポイント用stepfun-plan:Step Plan エンドポイント用
Plugin のインストール
openclaw plugins install @openclaw/stepfun-provideropenclaw gateway restartリージョンとエンドポイントの概要
| エンドポイント | 中国(.com) |
グローバル(.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 |
認証環境変数:STEPFUN_API_KEY
組み込みカタログ
Standard(stepfun):
| モデル参照 | コンテキスト | 最大出力 | 備考 |
|---|---|---|---|
stepfun/step-3.5-flash |
262,144 | 65,536 | デフォルトの標準モデル |
stepfun/step-3.7-flash |
262,144 | 262,144 | マルチモーダル画像入力をサポート |
Step Plan(stepfun-plan):
| モデル参照 | コンテキスト | 最大出力 | 備考 |
|---|---|---|---|
stepfun-plan/step-3.5-flash |
262,144 | 65,536 | デフォルトの Step Plan モデル |
stepfun-plan/step-3.7-flash |
262,144 | 262,144 | マルチモーダル画像入力をサポート |
stepfun-plan/step-3.5-flash-2603 |
262,144 | 65,536 | 追加の Step Plan モデル |
はじめに
Standard
標準の StepFun エンドポイントを介した汎用的な用途に最適です。
エンドポイントのリージョンを選択
| 認証の選択肢 | エンドポイント | リージョン |
|---|---|---|
stepfun-standard-api-key-intl |
https://api.stepfun.ai/v1 |
国際 |
stepfun-standard-api-key-cn |
https://api.stepfun.com/v1 |
中国 |
オンボーディングを実行
openclaw onboard --auth-choice stepfun-standard-api-key-intl中国向けエンドポイント:
openclaw onboard --auth-choice stepfun-standard-api-key-cn非対話型の代替手順
openclaw onboard --auth-choice stepfun-standard-api-key-intl \ --stepfun-api-key "$STEPFUN_API_KEY"モデルが利用可能であることを確認
openclaw models list --provider stepfunデフォルトモデル:stepfun/step-3.5-flash
代替モデル:stepfun/step-3.7-flash
Step Plan
Step Plan 推論エンドポイントに最適です。
エンドポイントのリージョンを選択
| 認証の選択肢 | エンドポイント | リージョン |
|---|---|---|
stepfun-plan-api-key-intl |
https://api.stepfun.ai/step_plan/v1 |
国際 |
stepfun-plan-api-key-cn |
https://api.stepfun.com/step_plan/v1 |
中国 |
オンボーディングを実行
openclaw onboard --auth-choice stepfun-plan-api-key-intl中国向けエンドポイント:
openclaw onboard --auth-choice stepfun-plan-api-key-cn非対話型の代替手順
openclaw onboard --auth-choice stepfun-plan-api-key-intl \ --stepfun-api-key "$STEPFUN_API_KEY"モデルが利用可能であることを確認
openclaw models list --provider stepfun-planデフォルトモデル:stepfun-plan/step-3.5-flash
代替モデル:stepfun-plan/step-3.7-flash、stepfun-plan/step-3.5-flash-2603
単一の認証フローにより、stepfun と stepfun-plan の両方にリージョンと一致するプロファイルが書き込まれるため、オンボーディングを 1 回実行すると両方のサーフェスがまとめて検出されます。
高度な設定
完全な設定:Standard プロバイダー
{ 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, }, ], }, }, },}完全な設定:Step Plan プロバイダー
{ 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, }, ], }, }, },}備考
step-3.7-flashは OpenClaw を介したテキストおよび画像入力に対応しています。StepFun の API は動画にも対応していますが、OpenClaw ではまだモデル入力モダリティとして利用できません。- Step 3.7 は
low、medium、highの推論エフォートをサポートします。このモデルには推論を無効にするモードがないため、/think offはlowにマッピングされます。 step-3.5-flash-2603は現在、stepfun-planでのみ公開されています。- モデルを確認または切り替えるには、
openclaw models listとopenclaw models set <provider/model>を使用します。
関連項目
Was this useful?