ark-doubao-seed-1.6-thinking-250615

Display Name: Doubao Seed 1.6 Thinking (250615)
ByteDance
ByteDance
Released on Jun 25 12:00 AM

ark-doubao-seed-1.6-thinking-250615 is provided by ByteDance ARK

Specifications

Context256,000
Maximum Output16,000
Inputtext, image, video
Outputtext, json

Performance (7-day Average)

Uptime
TPS
RURT

Pricing

< 32K
Input¥0.80/MTokens
Output¥8.00/MTokens
32K-128K
Input¥1.20/MTokens
Output¥16.00/MTokens
128K-256K
Input¥2.40/MTokens
Output¥24.00/MTokens
256K+
Input¥2.40/MTokens
Output¥24.00/MTokens

Usage Statistics

No usage data available for this model during the selected period
View your usage statistics for this model

Code Examples

Use the OpenAI Python SDK to call this model. Replace your-api-key with your API key.

python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.ohmygpt.com/v1",
    api_key="your-api-key",  # Replace with your API key
)

response = client.chat.completions.create(
    model="ark-doubao-seed-1.6-thinking-250615",
    messages=[
        {"role": "user", "content": "Hello!"}
    ],
)

print(response.choices[0].message.content)