ByteDance Doubao

Doubao Seed 1.6 (thinking) API

CN ByteDance Doubao
Coba di Playground → Dapatkan Kunci API

Doubao Seed 1.6 (thinking) adalah model penalaran dari ByteDance Doubao. Model ini menawarkan penalaran langkah demi langkah. Tersedia melalui API terpadu MeshTok.

PenalaranAlat

Harga (daftar resmi, per 1M token)

Input
$0.16/M
Output
$1.63/M

Spesifikasi

Jendela konteks256K token Modalitas inputTeks StreamingYa APIKompatibel dengan OpenAI

Cara menggunakan Doubao Seed 1.6 (thinking)

Pengganti langsung OpenAI. Ubah hanya base_url dan model.

# Python - pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://meshtok.com/v1",
    api_key="sk-your-MeshTok-key",
)

resp = client.chat.completions.create(
    model="bytedance/doubao-seed-1.6:thinking",
    messages=[{"role":"user","content":"Hello!"}],
)
print(resp.choices[0].message.content)
# cURL
curl https://meshtok.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-MeshTok-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"bytedance/doubao-seed-1.6:thinking","messages":[{"role":"user","content":"Hello!"}]}'

Model terkait

Model lain yang mungkin Anda pertimbangkan.