OpenClaw Reference (Mirrored)

Volcengine (Doubao)

Mirrored from OpenClaw (MIT)
This mirror is provided for convenience. OpenClawdBots is not affiliated with or endorsed by OpenClaw.

Volcengine (Doubao)

The Volcengine provider gives access to Doubao models and third-party models hosted on Volcano Engine, with separate endpoints for general and coding workloads.

DetailValue
Providersvolcengine (general) + volcengine-plan (coding)
AuthVOLCANO_ENGINE_API_KEY
APIOpenAI-compatible

Getting started

  1. Set the API key

    Run interactive onboarding:

    openclaw onboard --auth-choice volcengine-api-key
    

    This registers both the general (volcengine) and coding (volcengine-plan) providers from a single API key.

  2. Set a default model
    {
      agents: {
        defaults: {
          model: { primary: "volcengine-plan/ark-code-latest" },
        },
      },
    }
    
  3. Verify the model is available
    openclaw models list --provider volcengine
    openclaw models list --provider volcengine-plan
    
TIP

For non-interactive setup (CI, scripting), pass the key directly:

openclaw onboard --non-interactive \
  --mode local \
  --auth-choice volcengine-api-key \
  --volcengine-api-key "$VOLCANO_ENGINE_API_KEY"

Providers and endpoints

ProviderEndpointUse case
volcengineark.cn-beijing.volces.com/api/v3General models
volcengine-planark.cn-beijing.volces.com/api/coding/v3Coding models
NOTE

Both providers are configured from a single API key. Setup registers both automatically.

Available models

General (volcengine)
Model refNameInputContext
volcengine/doubao-seed-1-8-251228Doubao Seed 1.8text, image256,000
volcengine/doubao-seed-code-preview-251028doubao-seed-code-preview-251028text, image256,000
volcengine/kimi-k2-5-260127Kimi K2.5text, image256,000
volcengine/glm-4-7-251222GLM 4.7text, image200,000
volcengine/deepseek-v3-2-251201DeepSeek V3.2text, image128,000
Coding (volcengine-plan)
Model refNameInputContext
volcengine-plan/ark-code-latestArk Coding Plantext256,000
volcengine-plan/doubao-seed-codeDoubao Seed Codetext256,000
volcengine-plan/glm-4.7GLM 4.7 Codingtext200,000
volcengine-plan/kimi-k2-thinkingKimi K2 Thinkingtext256,000
volcengine-plan/kimi-k2.5Kimi K2.5 Codingtext256,000
volcengine-plan/doubao-seed-code-preview-251028Doubao Seed Code Previewtext256,000

Advanced notes

Default model after onboarding

openclaw onboard --auth-choice volcengine-api-key currently sets volcengine-plan/ark-code-latest as the default model while also registering the general volcengine catalog.

Model picker fallback behavior

During onboarding/configure model selection, the Volcengine auth choice prefers both volcengine/* and volcengine-plan/* rows. If those models are not loaded yet, OpenClaw falls back to the unfiltered catalog instead of showing an empty provider-scoped picker.

Environment variables for daemon processes

If the Gateway runs as a daemon (launchd/systemd), make sure VOLCANO_ENGINE_API_KEY is available to that process (for example, in ~/.openclaw/.env or via env.shellEnv).

WARNING

When running OpenClaw as a background service, environment variables set in your interactive shell are not automatically inherited. See the daemon note above.