> ## Documentation Index
> Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Volcengine Embeddings

> Generate embeddings using ByteDance Volcengine

## Overview

Volcengine (ByteDance) provides embedding models through their cloud platform.

## Quick Start

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonaiagents import embedding

result = embedding(
    input="Hello world",
    model="volcengine/doubao-embedding"
)
print(f"Dimensions: {len(result.embeddings[0])}")
```

## CLI Usage

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
praisonai embed "Hello world" --model volcengine/doubao-embedding
```

## Setup

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
export VOLCENGINE_API_KEY="your-volcengine-api-key"
```

## Related

* [Embedding Providers Overview](/docs/embeddings/index)
