inference-providers

Seed 2.0 Lite

by bytedance · family seed

Facts

Release date2026-02-14
Retired date
Knowledge cutoff
Context (max)262,144
Max output
Modalitiestext, image, video → text
Aliasesseed-2.0-lite
Open weightsno
DescriptionSeed 2.0 Lite tier; 262K context, multimodal input, 131K output. Tiered $0.25/$2.00 per Mtok up to 128K prompt, 2x above; post-April 2026 update added native audio understanding.

Unknown values are shown as —.

Offerings

ProviderWire IDVariantEndpointProtocolStatusPrice (USD / Mtok)Reasoning
OpenRouterbytedance-seed/seed-2.0-litelitechat-completionsopenai-chatga0.25 / 2.00effort · default on · returns reasoning_content · round-trips reasoning_content

Reasoning controls

OpenRouter· bytedance-seed/seed-2.0-lite· chat-completions effort

reasoning.effort nonelowmedium●highxhighmax

effort · default on · returns reasoning_content · round-trips reasoning_content

Example requests

OpenRouter · openai-chat · bytedance-seed/seed-2.0-lite

curl 'https://openrouter.ai/api/v1/chat/completions' \
  -H 'Authorization: Bearer <YOUR_API_KEY>' \
  -H 'Content-Type: application/json' \
  -d '{
  "model": "bytedance-seed/seed-2.0-lite",
  "messages": [
    {
      "role": "user",
      "content": "Tell me about the weather."
    }
  ],
  "reasoning": {
    "effort": "medium"
  }
}'
Python (requests)
import requests

resp = requests.post(
    "https://openrouter.ai/api/v1/chat/completions",
    headers={
      "Authorization": "Bearer <YOUR_API_KEY>",
      "Content-Type": "application/json"
    },
    json={
      "model": "bytedance-seed/seed-2.0-lite",
      "messages": [
        {
          "role": "user",
          "content": "Tell me about the weather."
        }
      ],
      "reasoning": {
        "effort": "medium"
      }
    },
)
print(resp.json())
TypeScript (fetch)
const resp = await fetch("https://openrouter.ai/api/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <YOUR_API_KEY>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "model": "bytedance-seed/seed-2.0-lite",
    "messages": [
      {
        "role": "user",
        "content": "Tell me about the weather."
      }
    ],
    "reasoning": {
      "effort": "medium"
    }
  }),
})
console.log(await resp.json())
  • ⚠ Responses include reasoning_content artifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).