Back to models
ByteDance

Doubao-Seed-Evolving

Seed 最新 Coding & Agent 模型,持续升级。面向 Agent 与 Coding 场景打造,具备复杂任务编排、长程规划、代码生成与工具调用等核心能力。

Quick Stats

Context

1049K

Max Output

262K

Provider

ByteDance

Specs

1

Modalities

in textin imageout text

Specs & Platform Price (per 1M tokens)

Quality
Input $0.882353Output $4.411765Cache read $0.176471

Recommended Plan

Doubao-Seed-Evolving Starter Plan

Pay-as-you-go after top-up; $1 free credit for new users.

Buy Plan

API Endpoint

Model IDdoubao-seed-evolving

cURL

curl https://intertoken.ai/v1/chat/completions \
  -H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "doubao-seed-evolving",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Python (openai SDK)

from openai import OpenAI

client = OpenAI(
    base_url="https://intertoken.ai/v1",
    api_key="$TOKENPORTAL_API_KEY",
)

resp = client.chat.completions.create(
    model="doubao-seed-evolving",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)

Start using this model

Sign up free, get an API key, and make your first call in 30 seconds.