Doubao Seed 1.6 251015
Doubao logo

Doubao Seed 1.6 251015

doubao-seed-1-6-251015
Doubao

Pricing

TierPricingCache Read
Input<=32K, Output<=200
$0.1096$0.274
-
Input<=32K, Output>200
$0.1096$1.0959
-
32K<Input<=128K
$0.1644$2.1918
-
128K<Input<=256K
$0.3288$3.2877
-

Input Modalities

    Try this model

    Python
    import os
    from openai import OpenAI
    
    client = OpenAI(
        api_key=os.environ["AIHUBMIX_API_KEY"],
        base_url="https://shkq.org/v1",
    )
    
    response = client.chat.completions.create(
        model="doubao-seed-1-6-251015",
        messages=[
          {
            "role": "user",
            "content": "Hello, how are you?"
          }
        ],
        max_tokens=1024,
        stream=False,
    )
    
    print(response.choices[0].message.content)

    Frequently asked questions

    How do I call Doubao Seed 1.6 251015 via API?

    Doubao Seed 1.6 251015 is available through the AIHubMix unified API. The API is OpenAI-compatible: point your OpenAI SDK at https://aihubmix.com/v1, use your AIHubMix API key, and set the model name to doubao-seed-1-6-251015 — no other code changes needed.