8.4 KiB
summary, title, read_when
| summary | title | read_when | |||
|---|---|---|---|---|---|
| Volcano Engine setup (Doubao models, coding endpoints, and Seed Speech TTS) | 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. The same official plugin also registers Volcengine Speech as a TTS provider.
| Detail | Value |
|---|---|
| Providers | volcengine (general + TTS), volcengine-plan (coding) |
| Model auth | VOLCANO_ENGINE_API_KEY |
| TTS auth | VOLCENGINE_TTS_API_KEY or BYTEPLUS_SEED_SPEECH_API_KEY |
| API | OpenAI-compatible models, BytePlus Seed Speech TTS |
Getting started
```bash openclaw plugins install @openclaw/volcengine-provider openclaw gateway restart ``` Run interactive onboarding:```bash
openclaw onboard --auth-choice volcengine-api-key
```
This registers both the general (`volcengine`) and coding (`volcengine-plan`) providers from a single API key.
```json5
{
agents: {
defaults: {
model: { primary: "volcengine-plan/ark-code-latest" },
},
},
}
```
```bash
openclaw models list --provider volcengine
openclaw models list --provider volcengine-plan
```
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
| Provider | Endpoint | Use case |
|---|---|---|
volcengine |
ark.cn-beijing.volces.com/api/v3 |
General models |
volcengine-plan |
ark.cn-beijing.volces.com/api/coding/v3 |
Coding models |
Built-in catalog
| Model ref | Name | Input | Context | | ---------------------------------------------- | ----------------------- | ------------------ | --------- | | `volcengine/doubao-seed-evolving` | Doubao Seed Evolving | text, image, video | 1,024,000 | | `volcengine/doubao-seed-2-1-pro-260628` | Doubao Seed 2.1 Pro | text, image, video | 256,000 | | `volcengine/doubao-seed-2-1-turbo-260628` | Doubao Seed 2.1 Turbo | text, image, video | 256,000 | | `volcengine/glm-5-2-260617` | GLM 5.2 | text | 1,024,000 | | `volcengine/deepseek-v4-pro-260425` | DeepSeek V4 Pro | text | 1,024,000 | | `volcengine/deepseek-v4-flash-260425` | DeepSeek V4 Flash | text | 1,024,000 | | Model ref | Name | Input | Context | | ------------------------------------------ | --------------------- | ------------------ | --------- | | `volcengine-plan/ark-code-latest` | Ark Coding Plan | text | 256,000 | | `volcengine-plan/doubao-seed-2.1-turbo` | Doubao Seed 2.1 Turbo | text, image, video | 256,000 | | `volcengine-plan/glm-5.2` | GLM 5.2 | text | 1,024,000 | | `volcengine-plan/deepseek-v4-pro` | DeepSeek V4 Pro | text | 1,024,000 | | `volcengine-plan/deepseek-v4-flash` | DeepSeek V4 Flash | text | 1,024,000 |Both catalogs are static (no /models discovery call) and support OpenAI-compatible streamed usage accounting. Tool schemas for both providers automatically drop minLength, maxLength, minItems, maxItems, minContains, and maxContains keywords, since the Volcengine tool-call API rejects them.
Text-to-speech
Volcengine TTS uses the BytePlus Seed Speech HTTP API (voice.ap-southeast-1.bytepluses.com) and is configured separately from the OpenAI-compatible Doubao model API key. In the BytePlus console, open Seed Speech > Settings > API Keys, copy the API key, then set:
export VOLCENGINE_TTS_API_KEY="byteplus_seed_speech_api_key"
export VOLCENGINE_TTS_RESOURCE_ID="seed-tts-1.0"
Then enable it in openclaw.json:
{
tts: {
auto: "always",
provider: "volcengine",
providers: {
volcengine: {
apiKey: "byteplus_seed_speech_api_key",
voice: "en_female_anna_mars_bigtts",
speedRatio: 1.0,
},
},
},
}
Available fields under tts.providers.volcengine: apiKey, voice, speedRatio (0.2-3.0), emotion, cluster, resourceId, appKey, and baseUrl. !emotion=<value> also works as an inline voice directive when voice-setting overrides are allowed.
For voice-note targets, OpenClaw requests provider-native ogg_opus. For normal audio attachments, it requests mp3. Provider aliases bytedance and doubao also resolve to this speech provider.
The default resource id is seed-tts-1.0, the entitlement BytePlus grants to newly created Seed Speech API keys by default. If your project has TTS 2.0 entitlement, set VOLCENGINE_TTS_RESOURCE_ID=seed-tts-2.0.
Legacy AppID/token auth remains supported for older Speech Console applications:
export VOLCENGINE_TTS_APPID="speech_app_id"
export VOLCENGINE_TTS_TOKEN="speech_access_token"
export VOLCENGINE_TTS_CLUSTER="volcano_tts"
Other optional TTS env vars: VOLCENGINE_TTS_VOICE, VOLCENGINE_TTS_APP_KEY, and VOLCENGINE_TTS_BASE_URL override the corresponding tts.providers.volcengine config fields when set.