Unlock exclusive introductory pricing for the newly launched Gemini 3.5 Flash.
D

Doubao-Seed-Evolving

Indtast:$0.66672/M
Output:$3.3336/M
Udgivet:Jun 22, 2026

doubao-seed-evolving is designed for coding and agent scenarios, delivering weekly capability updates through a unified model ID.

Ny
Kommersiel brug

Playground for Doubao-Seed-Evolving

Udforsk Doubao-Seed-Evolving's Playground โ€” et interaktivt miljรธ til at teste modeller og kรธre forespรธrgsler i realtid. Prรธv prompts, juster parametre og iterer รธjeblikkeligt for at fremskynde udvikling og validere use cases.

Technical Specifications of Seed Evolving

ItemDoubao Seed Evolving
ProviderByteDance Seed Team
Model TypeSelf-improving multimodal foundation model framework
FamilySeed / Doubao Ecosystem
ModalitiesText, Image, Video, Audio, Agent Tasks
Architecture FocusSelf-evolution through evaluation, data generation, training, and infrastructure feedback loops
Primary GoalContinuous model improvement and autonomous capability expansion
AvailabilityResearch framework integrated into Seed family development
Latest Related GenerationSeed 2.1
Deployment FocusAgent systems, reasoning, multimodal understanding, real-world task execution

What is Seed Evolving?

"Seed Evolving" is not a standalone commercial model like Seedance or Seedream. Instead, it refers to ByteDance Seed's self-evolving AI development framework that continuously improves future generations of Seed models through automated evaluation, data generation, reinforcement learning, training optimization, and infrastructure feedback. ByteDance describes this internally as a "Seed-for-Seed" lifecycle where models help improve future models.

The concept became more visible with the release of Seed 2.1, where ByteDance discussed a self-evolving lifecycle composed of:

  • Evaluation Loop
  • Data Loop
  • Training Loop
  • Infrastructure Loop

These systems allow newer Seed models to participate in generating training signals and improving subsequent model generations.


Main Features of Seed Evolving

  • Self-improving training pipeline where models contribute to future model development.
  • Automated evaluation systems that identify weaknesses and generate improvement targets.
  • Agent-centric optimization designed for long-horizon task execution rather than simple chat interactions.
  • Multimodal learning across text, images, audio, video, and GUI environments.
  • Real-world task orientation focusing on tool use, coding, browsing, and multi-step workflows.
  • Scalable model evolution framework intended to improve performance without relying solely on manual dataset construction.

Benchmark Performance

ByteDance has not published benchmark numbers specifically for "Seed Evolving" because it is a methodology rather than a deployable model.

Performance is reflected through newer Seed-family models:

BenchmarkSeed Family Result
BrowseComp77.3
ฯ„ยฒ-Bench Retail90.4
ฯ„ยฒ-Bench Telecom94.2
Terminal Bench 2.055.8

These benchmark improvements are cited as outcomes of the broader Seed 2.0 development process and evolving training ecosystem.

Seed Evolving vs Traditional Model Development

FeatureSeed EvolvingTraditional AI Training
EvaluationContinuous automated feedbackPeriodic human evaluation
Data CreationModel-assisted generationMostly human-curated
Improvement CycleContinuousRelease-based
Agent LearningCore focusOften secondary
Multimodal OptimizationNativeFrequently separate systems
Scaling StrategySelf-reinforcing loopsLarger datasets and comput

FAQ

Priser for Doubao-Seed-Evolving

Udforsk konkurrencedygtige priser for Doubao-Seed-Evolving, designet til at passe til forskellige budgetter og brugsbehov. Vores fleksible planer sikrer, at du kun betaler for det, du bruger, hvilket gรธr det nemt at skalere, efterhรฅnden som dine krav vokser. Opdag hvordan Doubao-Seed-Evolving kan forbedre dine projekter, mens omkostningerne holdes hรฅndterbare.

ModelComet Price (USD / M Tokens)Official Price (USD / M Tokens)Discount
doubao-seed-evolving
Indtast:$0.66672/M
Output:$3.3336/M
Indtast:$0.8334/M
Output:$4.167/M
-20%

Eksempelkode og API til Doubao-Seed-Evolving

Fรฅ adgang til omfattende eksempelkode og API-ressourcer for Doubao-Seed-Evolving for at strรธmline din integrationsproces. Vores detaljerede dokumentation giver trin-for-trin vejledning, der hjรฆlper dig med at udnytte det fulde potentiale af Doubao-Seed-Evolving i dine projekter.

# Get your CometAPI key from https://www.cometapi.com/console/token
# Export it as: export COMETAPI_KEY="your-key-here"

set -eo pipefail

curl -sS --retry 3 --retry-delay 2 --retry-all-errors https://api.cometapi.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $COMETAPI_KEY" \
  -d '{
    "model": "doubao-seed-evolving",
    "max_completion_tokens": 2048,
    "reasoning_effort": "medium",
    "messages": [
      {
        "role": "user",
        "content": [
          {
            "type": "image_url",
            "image_url": {
              "url": "https://ark-project.tos-cn-beijing.ivolces.com/images/view.jpeg"
            }
          },
          {
            "type": "text",
            "text": "Describe the scene in two concise bullet points and infer one likely use case."
          }
        ]
      }
    ]
  }' | jq '.choices[0].message.content // .error // .'

cURL Code Example

# Get your CometAPI key from https://www.cometapi.com/console/token
# Export it as: export COMETAPI_KEY="your-key-here"

set -eo pipefail

curl -sS --retry 3 --retry-delay 2 --retry-all-errors https://api.cometapi.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $COMETAPI_KEY" \
  -d '{
    "model": "doubao-seed-evolving",
    "max_completion_tokens": 2048,
    "reasoning_effort": "medium",
    "messages": [
      {
        "role": "user",
        "content": [
          {
            "type": "image_url",
            "image_url": {
              "url": "https://ark-project.tos-cn-beijing.ivolces.com/images/view.jpeg"
            }
          },
          {
            "type": "text",
            "text": "Describe the scene in two concise bullet points and infer one likely use case."
          }
        ]
      }
    ]
  }' | jq '.choices[0].message.content // .error // .'

Python Code Example

from openai import OpenAI
import os

# Get your CometAPI key from https://www.cometapi.com/console/token, and paste it here
COMETAPI_KEY = os.environ.get("COMETAPI_KEY") or "<YOUR_COMETAPI_KEY>"
BASE_URL = "https://api.cometapi.com/v1"

client = OpenAI(base_url=BASE_URL, api_key=COMETAPI_KEY)

completion = client.chat.completions.create(
    model="doubao-seed-evolving",
    max_completion_tokens=2048,
    extra_body={"reasoning_effort": "medium"},
    messages=[
        {
            "role": "user",
            "content": [
                {
                    "type": "image_url",
                    "image_url": {
                        "url": "https://ark-project.tos-cn-beijing.ivolces.com/images/view.jpeg"
                    },
                },
                {
                    "type": "text",
                    "text": "Describe the scene in two concise bullet points and infer one likely use case.",
                },
            ],
        }
    ],
)

print(completion.choices[0].message.content)

JavaScript Code Example

import OpenAI from "openai";

// Get your CometAPI key from https://www.cometapi.com/console/token, and paste it here
const api_key = process.env.COMETAPI_KEY || "<YOUR_COMETAPI_KEY>";
const base_url = "https://api.cometapi.com/v1";

const openai = new OpenAI({
  apiKey: api_key,
  baseURL: base_url,
});

async function main() {
  const completion = await openai.chat.completions.create({
    model: "doubao-seed-evolving",
    max_completion_tokens: 2048,
    reasoning_effort: "medium",
    messages: [
      {
        role: "user",
        content: [
          {
            type: "image_url",
            image_url: {
              url: "https://ark-project.tos-cn-beijing.ivolces.com/images/view.jpeg"
            }
          },
          {
            type: "text",
            text: "Describe the scene in two concise bullet points and infer one likely use case."
          }
        ]
      }
    ],
  });

  console.log(completion.choices[0].message.content);
}

main();

Uptime

Anmodningssuccessrate over de seneste 30 dage, der afspejler pรฅlideligheden hos hver modeludbyder. CometAPI overvรฅger alle tilsluttede udbydere i realtid, 24/7.

RespondLIVE
12397msAvg. Response
UptimeLIVE
97.3%Avg. Uptime

Versioner af Doubao-Seed-Evolving

ร…rsagen til, at Doubao-Seed-Evolving har flere รธjebliksbilleder kan omfatte potentielle faktorer sรฅsom variationer i output efter opdateringer, der krรฆver รฆldre รธjebliksbilleder for konsistens, at give udviklere en overgangsperiode til tilpasning og migration, og at forskellige รธjebliksbilleder svarer til globale eller regionale slutpunkter for at optimere brugeroplevelsen. For detaljerede forskelle mellem versioner, henvises der til den officielle dokumentation.

Version
doubao-seed-evolving