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

Blog

ByteDance Seed 2.0 Mini Is Now Available in Puter.js

On this page

Puter.js now supports Seed 2.0 Mini, ByteDance's most lightweight and inference-efficient model in the Seed 2.0 family.

What is Seed 2.0 Mini?

Seed 2.0 Mini is the smallest variant in ByteDance's Seed 2.0 series, optimized for low-latency, high-concurrency, and cost-sensitive applications. Despite being the lightweight option, it delivers strong benchmark scores—87.0 on AIME 2025, 1644 on Codeforces, and 67.9 on SWE-Bench Verified.

Key highlights:

  • 256K context window with up to 128K output tokens
  • Multimodal input supporting text, image, and video
  • 4-level reasoning effort system that lets you trade speed for depth depending on task complexity
  • High throughput at 1.5M tokens per minute and 30K requests per minute

Examples

Basic Chat

puter.ai.chat("Explain the concept of quantum computing in simple terms", {
    model: "bytedance-seed/seed-2.0-mini"
})

Streaming with Reasoning

const response = await puter.ai.chat(
    "Debug this logic: If I have 3 apples and give away 5, how many do I have?",
    { model: "bytedance-seed/seed-2.0-mini", stream: true }
);

for await (const part of response) {
    if (part?.reasoning) puter.print(part?.reasoning);
    else puter.print(part?.text);
}

Image Analysis

puter.ai.chat("What do you see in this image?",
    "https://assets.puter.site/doge.jpeg",
    { model: "bytedance-seed/seed-2.0-mini" }
)

Get Started Now

Just add one library to your project:

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

Or add one script tag to your HTML:

<script src="https://js.puter.com/v2/"></script>

No API keys and no infrastructure setup. Start building with Seed 2.0 Mini immediately.

Learn more:

Ship a Full-Stack App with One Prompt

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

Coding manually? see the guide