Skip to content

Seed

Seed models are general-purpose chat models.

Models

Model Code Notes
Dola Seed 2.0 pro Dola-Seed-2.0-pro High capability.
Dola Seed 2.0 mini Dola-Seed-2.0-mini Balanced.
Dola Seed 2.0 lite Dola-Seed-2.0-lite Fast and economical.
ByteDance Seed SC ByteDance-Seed-SC General-purpose chat.
ByteDance Seed 1.8 ByteDance-Seed-1.8 Previous generation.

Capabilities

  • tools, tool_choice
  • temperature, top_p, max_tokens, response_format

See Parameter Support by Model for the full matrix.

Example

from openai import OpenAI

client = OpenAI(base_url="https://llm.siraya.ai/v1", api_key="<API_KEY>")
resp = client.chat.completions.create(
    model="Dola-Seed-2.0-pro",
    messages=[{"role": "user", "content": "Brainstorm names for a coffee shop."}],
)
print(resp.choices[0].message.content)