Skip to content

feat(model): add Doubao 2.0 model presets#381

Merged
c121914yu merged 1 commit intolabring:mainfrom
c121914yu:feat/doubao-2.0-models
Feb 14, 2026
Merged

feat(model): add Doubao 2.0 model presets#381
c121914yu merged 1 commit intolabring:mainfrom
c121914yu:feat/doubao-2.0-models

Conversation

@c121914yu
Copy link
Contributor

What

Add Doubao-Seed-2.0 series model presets, released on 2025-02-14.

Models Added

Model ID Description
doubao-seed-2-0-pro-260215 Flagship Agent model for deep reasoning & long-chain task execution
doubao-seed-2-0-lite-260215 Balanced performance and cost, surpasses Doubao 1.8
doubao-seed-2-0-mini-260215 Low latency, high concurrency, cost-sensitive scenarios
doubao-seed-2-0-code-preview-260215 Optimized for coding scenarios (works with TRAE)

Specs (all 2.0 models)

  • Context window: 256k
  • Max input: 256k
  • Max output: 128k (default 4k)
  • Vision (multimodal understanding): ✅
  • Reasoning (deep thinking): ✅
  • Tool calling: ✅

Reference

Copilot AI review requested due to automatic review settings February 14, 2026 16:37
Add Doubao-Seed-2.0 series models released on 2025-02-14:
- doubao-seed-2-0-pro-260215: flagship Agent model for deep reasoning
- doubao-seed-2-0-lite-260215: balanced performance and cost
- doubao-seed-2-0-mini-260215: low latency, high concurrency

All 2.0 models support 256k context, 128k max output, vision,
reasoning (deep thinking), and tool calling.
@c121914yu c121914yu force-pushed the feat/doubao-2.0-models branch from 352518c to cb338bf Compare February 14, 2026 16:39
@github-actions
Copy link

github-actions bot commented Feb 14, 2026

Build Successful - Preview Images for this PR:

registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-plugin-pr:cb338bf5aa06a75a812bd2607c8828038863fa0a

Changed packages:
None

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR adds support for the new Doubao Seed 2.0 series models from Volcengine, which were released with significantly enhanced capabilities compared to the 1.x series. The changes add four new model configurations (pro, lite, mini, and code-preview variants) to the Doubao provider list.

Changes:

  • Added four Doubao Seed 2.0 model presets with 256k context window and 128k max output tokens
  • All new models support vision, reasoning, and tool calling capabilities
Comments suppressed due to low confidence (1)

modules/model/provider/Doubao/index.ts:49

  • The model names end with "260215" which represents February 15, 2026 (YYMMDD format), but the PR description states these models were released on February 14, 2025. Looking at the existing Doubao model naming pattern (e.g., "doubao-seed-1-8-251228" for December 28, 2025), the date suffix should be "250214" (February 14, 2025) not "260215". Please verify the correct release date and update the model names accordingly.
      model: 'doubao-seed-2-0-pro-260215',
      maxContext: 256000,
      maxTokens: 128000,
      quoteMaxToken: 256000,
      maxTemperature: 1,
      vision: true,
      reasoning: true,
      toolChoice: true
    },
    {
      type: ModelTypeEnum.llm,
      model: 'doubao-seed-2-0-lite-260215',
      maxContext: 256000,
      maxTokens: 128000,
      quoteMaxToken: 256000,
      maxTemperature: 1,
      vision: true,
      reasoning: true,
      toolChoice: true
    },
    {
      type: ModelTypeEnum.llm,
      model: 'doubao-seed-2-0-mini-260215',
      maxContext: 256000,
      maxTokens: 128000,
      quoteMaxToken: 256000,
      maxTemperature: 1,
      vision: true,
      reasoning: true,
      toolChoice: true
    },
    {
      type: ModelTypeEnum.llm,
      model: 'doubao-seed-1-8-251228',
      maxContext: 220000,
      maxTokens: 16000,
      quoteMaxToken: 220000,
      maxTemperature: 1,
      vision: true,
      reasoning: true,
      toolChoice: true
    },

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@c121914yu c121914yu merged commit 5485256 into labring:main Feb 14, 2026
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants