feat(model): add Doubao 2.0 model presets#381
Merged
c121914yu merged 1 commit intolabring:mainfrom Feb 14, 2026
Merged
Conversation
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.
352518c to
cb338bf
Compare
|
✅ Build Successful - Preview Images for this PR: Changed packages: |
Contributor
There was a problem hiding this comment.
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Add Doubao-Seed-2.0 series model presets, released on 2025-02-14.
Models Added
doubao-seed-2-0-pro-260215doubao-seed-2-0-lite-260215doubao-seed-2-0-mini-260215doubao-seed-2-0-code-preview-260215Specs (all 2.0 models)
Reference