| doubao-seed-2.0-lite | doubao-seed-2.1-turbo | |
|---|---|---|
| Providers | ByteDance Doubao | ByteDance Doubao |
| Input $/M | $0.09 | $0.45 |
| Output $/M | $0.55 | $2.27 |
| Output multiplier | ×6.00 | ×5.00 |
| Context window | 256K tokens | 256K tokens |
| Intelligence index | — | — |
| Coding index | — | — |
doubao-seed-2.0-lite is roughly 5.0× cheaper on input than doubao-seed-2.1-turbo. If your workload passes the quality bar on the cheaper model, that gap compounds across every request; route to doubao-seed-2.1-turbo deliberately rather than by default.
Tags: doubao-seed-2.0-lite — Chat, Reasoning, Coding, Vision · doubao-seed-2.1-turbo — 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-turbo
client.chat.completions.create(model="doubao-seed-2.1-turbo", messages=[{"role": "user", "content": "Hi"}])