Skip to main content

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.

Overview

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

Quick Start

from praisonaiagents import embedding

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

CLI Usage

praisonai embed "Hello world" --model volcengine/doubao-embedding

Setup

export VOLCENGINE_API_KEY="your-volcengine-api-key"