# Volcengine (火山引擎) (/docs/providers/volcengine)


Overview [#overview]

[Volcengine](https://www.volcengine.com) (火山引擎) is ByteDance's cloud service platform, providing access to Doubao (豆包) LLM series and multimedia generation capabilities.

**Official Website:** [https://www.volcengine.com](https://www.volcengine.com)

Key Features [#key-features]

* **ByteDance Ecosystem** — Integration with ByteDance services
* **Chinese Optimized** — Excellent Chinese language performance
* **Video Generation** — Text-to-video capabilities
* **Simultaneous Interpretation** — Real-time speech translation

Usage Example [#usage-example]

```python
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://api.yuhuanstudio.com/v1"
)

response = client.chat.completions.create(
    model="model-id",
    messages=[{"role": "user", "content": "你好！"}]
)

print(response.choices[0].message.content)
```

Available Models [#available-models]

Use the [Models API](/docs/models-api) to query available models:

```bash
curl https://api.yuhuanstudio.com/v1/models?provider=volcengine \
  -H "Authorization: Bearer YOUR_API_KEY"
```

<Callout type="info">
  Models and pricing are synced automatically. Check the dashboard for current availability and rates.
</Callout>

Official Resources [#official-resources]

* [Volcengine](https://www.volcengine.com)
* [Documentation](https://www.volcengine.com/docs)
