메인 콘텐츠로 건너뛰기

StepFun

OpenClaw에는 두 개의 프로바이더 id를 가진 번들 StepFun 프로바이더 Plugin이 포함되어 있습니다:
  • 표준 엔드포인트용 stepfun
  • Step Plan 엔드포인트용 stepfun-plan
Standard와 Step Plan은 서로 다른 엔드포인트와 모델 ref 접두사(stepfun/...stepfun-plan/...)를 사용하는 별도의 프로바이더입니다. .com 엔드포인트에는 China 키를, .ai 엔드포인트에는 글로벌 키를 사용하세요.

리전 및 엔드포인트 개요

엔드포인트China (.com)글로벌 (.ai)
Standardhttps://api.stepfun.com/v1https://api.stepfun.ai/v1
Step Planhttps://api.stepfun.com/step_plan/v1https://api.stepfun.ai/step_plan/v1
인증 env var: STEPFUN_API_KEY

기본 제공 카탈로그

Standard (stepfun):
모델 ref컨텍스트최대 출력참고
stepfun/step-3.5-flash262,14465,536기본 Standard 모델
Step Plan (stepfun-plan):
모델 ref컨텍스트최대 출력참고
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/v1International
stepfun-standard-api-key-cnhttps://api.stepfun.com/v1China
2

온보딩 실행

openclaw onboard --auth-choice stepfun-standard-api-key-intl
또는 China 엔드포인트의 경우:
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>을 사용하세요.
더 넓은 프로바이더 개요는 Model providers를 참고하세요.

관련 문서

모델 프로바이더

모든 프로바이더, 모델 ref, 페일오버 동작 개요.

구성 참조

프로바이더, 모델, Plugin을 위한 전체 구성 스키마.

모델 선택

모델 선택 및 구성 방법.

StepFun Platform

StepFun API 키 관리 및 문서.