| doubao-seed-2.0-lite | doubao-seed-2.1-lite | |
|---|---|---|
| Providers | ByteDance Doubao | ByteDance Doubao |
| Input $/M | $0.09 | $0.12 |
| Output $/M | $0.55 | $0.41 |
| Output multiplier | ×6.00 | ×3.38 |
| Context window | 256K tokens | 1M tokens |
| Intelligence index | — | — |
| Coding index | — | — |
Input pricing is close — 1.33× apart — so the decision should come down to measured quality on your own evaluation set rather than headline cost.
Tags: doubao-seed-2.0-lite — Chat, Reasoning, Coding, Vision · doubao-seed-2.1-lite — Chat, Reasoning, Coding, Vision
from openai import OpenAI
client = OpenAI(base_url="https://starseaapi.com/v1", api_key="sk-...")
# doubao-seed-2.0-lite
client.chat.completions.create(model="doubao-seed-2.0-lite", messages=[{"role":"user","content":"Hi"}])
# doubao-seed-2.1-lite
client.chat.completions.create(model="doubao-seed-2.1-lite", messages=[{"role": "user", "content": "Hi"}])