Ship a Full-Stack App with One Prompt

Copy this prompt into your AI coding agent, or open it in one below.

Give this to your AI Create a to-do list app using Puter.js

Coding manually? see the guide

BytePlus

BytePlus: Seed 2.0 Lite 260428

byteplus/seed-2-0-lite-260428

Access Seed 2.0 Lite 260428 from BytePlus using Puter.js AI API.

Get Started
// npm install @heyputer/puter.js
import { puter } from '@heyputer/puter.js';

puter.ai.chat("Explain quantum computing in simple terms", {
    model: "byteplus/seed-2-0-lite-260428"
}).then(response => {
    document.body.innerHTML = response.message.content;
});
<html>
<body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
        puter.ai.chat("Explain quantum computing in simple terms", {
            model: "byteplus/seed-2-0-lite-260428"
        }).then(response => {
            document.body.innerHTML = response.message.content;
        });
    </script>
</body>
</html>
# pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://api.puter.com/puterai/openai/v1/",
    api_key="YOUR_PUTER_AUTH_TOKEN",
)

response = client.chat.completions.create(
    model="byteplus/seed-2-0-lite-260428",
    messages=[
        {"role": "user", "content": "Explain quantum computing in simple terms"}
    ],
)

print(response.choices[0].message.content)
curl https://api.puter.com/puterai/openai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_PUTER_AUTH_TOKEN" \
  -d '{
    "model": "byteplus/seed-2-0-lite-260428",
    "messages": [
      {"role": "user", "content": "Explain quantum computing in simple terms"}
    ]
  }'

Model Card

Seed 2.0 Lite is ByteDance's mid-tier general-purpose language model, available here through BytePlus's hosting of ByteDance's Model Ark platform. It handles a 256K context window, supports tool calling, and accepts text, image, and video input, with text-only output.

On benchmarks ByteDance has reported, it scores 93.0 on AIME 2025, a 2233 Codeforces rating, 81.7 on LiveCodeBench v6, and 73.5 on SWE-Bench Verified. Third-party testing found it ahead of Gemini 3.1 Pro Preview on AIME 2025 and close on MMLU-Pro (87.7 vs 89.8), though behind on SWE-Bench Verified and limited to a smaller context window than Gemini's 1M tokens.

As the Lite tier of the Seed 2.0 family, it costs a fraction of the Pro variant per token, suited to high-volume production use like document summarization, customer support, and agent workflows where cost per call matters.

This entry is the April 28, 2026 pinned snapshot of the model.

Context Window 256K

tokens

Max Output 128K

tokens

Input Cost $0.25

per million tokens

Output Cost $2

per million tokens

Input text, image, video

modalities

Tool Use Yes

 

Release Date Apr 28, 2026

 

Model Playground

Try Seed 2.0 Lite 260428 instantly in your browser.
This playground uses the Puter.js AI API — no API keys or setup required.

Chat byteplus/seed-2-0-lite-260428
BytePlus
Chat with Seed 2.0 Lite 260428
Powered by Puter.js

More AI Models From BytePlus

Find other BytePlus models

Chat

Dola Seed 2.1 Turbo

Dola Seed 2.1 Turbo is ByteDance's faster, lower-cost variant in the Seed 2.1 family, offered internationally through BytePlus's Model Ark platform. It accepts text, image, and video input, with a 256K context window and function calling for agent workflows. On ByteDance's own benchmarks against Claude Opus 4.7, GPT-5.5, and Gemini 3.1 Pro, Turbo scores 89 on VideoMME for long video understanding and 79.2 on OVOBench for streaming video, ahead of Gemini 3.1 Pro's 86.7 and 64.1. It scores 88.0 on BeyondAIME reasoning, above Seed 2.1 Pro's 87.0. On knowledge tests like SuperGPQA it trails GPT-5.5 and Gemini. These are vendor-reported figures, not independently verified. It suits high-volume API use such as video analysis, document processing, and agent pipelines, where cost and video handling matter more than peak coding scores.

Image

Dola Seedream 5.0 Pro

Dola Seedream 5.0 Pro is ByteDance's Seedream 5.0 Pro image generation and editing model, offered here through BytePlus's ModelArk API under the "Dola" branding BytePlus uses across its hosted model lineup. It generates images as independently editable layers, separating subjects, text, and background so pieces can be repositioned or swapped after generation. It supports pixel-level editing through selection points, arrows, and annotation boxes, reads color codes and material specifications, and renders text across 14 or more languages including Arabic, Korean, Thai, French, Russian, and Japanese. On Artificial Analysis's independent Text-to-Image Elo leaderboard it scores 1,283, ranking 8th overall, ahead of Black Forest Labs' FLUX.2 Max (1,233) and just behind Google's Nano Banana Pro (1,299). It fits production teams that need layered, editable output and multilingual text rather than a single flattened image.

Chat

GLM-5.2

GLM-5.2 is an open-weight Mixture-of-Experts model from Zhipu AI (Z.ai), available here through BytePlus's hosted API. The model has roughly 744 billion total parameters and a 1 million token context window, and Z.ai released its weights under an MIT license. GLM-5.2 is built for coding, particularly long-horizon and agentic coding tasks. On SWE-bench Pro it scored 62.1, ahead of GPT-5.5 (58.6) and its predecessor GLM-5.1 (58.4). On the Artificial Analysis Intelligence Index it scored 51, the highest score among open-weight models at release. It suits teams building coding agents or working with large codebases who want an open-weight model, accessed here through BytePlus's API instead of self-hosting.

Frequently Asked Questions

How do I use Seed 2.0 Lite 260428?

You can access Seed 2.0 Lite 260428 by BytePlus through Puter.js AI API. Include the library in your web app or Node.js project and start making calls with just a few lines of JavaScript — no backend and no configuration required. You can also use it with Python or cURL via Puter's OpenAI-compatible API.

Is Seed 2.0 Lite 260428 free?

Yes, it is free if you're using it through Puter.js. With the User-Pays Model, you can add Seed 2.0 Lite 260428 to your app at no cost — your users pay for their own AI usage directly, making it completely free for you as a developer.

What is the pricing for Seed 2.0 Lite 260428?
Seed 2.0 Lite 260428 costs $0.25 per 1M input tokens and $2 per 1M output tokens.
Price per 1M tokens
Input$0.25
Output$2
Who created Seed 2.0 Lite 260428?

Seed 2.0 Lite 260428 was created by BytePlus and released on Apr 28, 2026.

What is the context window of Seed 2.0 Lite 260428?

Seed 2.0 Lite 260428 supports a context window of 256K tokens. For reference, that is roughly equivalent to 512 pages of text.

What is the max output length of Seed 2.0 Lite 260428?

Seed 2.0 Lite 260428 can generate up to 128K tokens in a single response.

What types of input can Seed 2.0 Lite 260428 process?

Seed 2.0 Lite 260428 accepts the following input types: text, image, video. It produces: text.

Does Seed 2.0 Lite 260428 support tool use (function calling)?

Yes, Seed 2.0 Lite 260428 supports tool use (function calling), allowing it to interact with external tools, APIs, and data sources as part of its response flow.

Does it work with React / Vue / Vanilla JS / Node / etc.?

Yes — the Seed 2.0 Lite 260428 API works with any JavaScript framework, Node.js, or plain HTML through Puter.js. Just include the library and start building. See the documentation for more details.

Get started with Puter.js

Add Seed 2.0 Lite 260428 to your app without worrying about API keys or setup.

Read the Docs View Tutorials