We have integrated StepFun into OpenClaw as a standalone plugin. Specifically, we have released an official plugin on ClawHub. Once users install this plugin, they can see StepFun models in the login menu.
This is the decoupled model configuration pattern recommended by OpenClaw. In this mode, model providers can independently maintain their model catalogs, authentication entries, and related configurations without being restricted by OpenClaw's main version release and review cycles.
After installing the plugin with a single line of code, users can find the StepFun configuration entry in OpenClaw's settings. From there, they can choose between Domestic (China) or Overseas regions, and select either the Standard API or Step Plan for integration.
Usage Details
The method of obtaining model lists via plugins was introduced in OpenClaw version 3.24. Given that version 3.24 contains several bugs, we strongly recommend that users upgrade to the latest version (version 3.28) before using this method.
To upgrade OpenClaw, please run:
npm i -g openclaw@latest
Step 1: Install the Plugin
Install the plugin and restart the OpenClaw Gateway service using the following commands:
openclaw plugins install clawhub:stepfun-openclaw-plugin@0.1.0
openclaw gateway restart
Step 2: Quick Configuration (Choose one of the two methods)
Option A: Interactive Wizard (Recommended for beginners)
Run the onboarding command to start the wizard:
openclaw onboard
During the process, select the StepFun authentication entry that suits you (e.g., Standard API Key or Step Plan API Key; see screenshots above). After completing the setup, set the model as default based on the system you are using:
-
Standard API:
openclaw models set stepfun/step-3.5-flash -
Step Plan:
openclaw models set stepfun-plan/step-3.5-flash
After configuration, it is recommended to restart the Gateway service again (openclaw gateway restart) to load the status configurations.
Option B: CLI One-Click Configuration (Recommended for advanced users)
Users can also complete the configuration directly via the command line.
Example for Standard API (China Region):
openclaw onboard --auth-choice stepfun-standard-api-key-cn --stepfun-api-key <YOUR_KEY>
openclaw models set stepfun/step-3.5-flash
openclaw gateway restart
Example for Step Plan (China Region):
openclaw onboard --auth-choice stepfun-plan-api-key-cn --stepfun-api-key <YOUR_KEY>
openclaw models set stepfun-plan/step-3.5-flash
openclaw gateway restart
Top comments (0)