Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions assets/model-capabilities/models-dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -7769,6 +7769,30 @@
"medium",
"high"
]
},
"deepseek-v3-2-251201": {
"contextWindowTokens": 131072,
"maxInputTokens": 98304,
"maxOutputTokens": 32768,
"input": [
"text"
],
"supportsTools": true,
"reasoning": true,
"reasoningEfforts": []
},
"seed-2-0-pro-260328": {
"contextWindowTokens": 262144,
"maxInputTokens": 262144,
"maxOutputTokens": 131072,
"input": [
"text",
"image",
"video"
],
"supportsTools": true,
"reasoning": true,
"reasoningEfforts": []
}
}
}
Expand Down
22 changes: 22 additions & 0 deletions scripts/update-llm-model-capabilities.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,28 @@ const BYTEPLUS_MODELS = {
reasoning: true,
reasoningEfforts: ['minimal', 'low', 'medium', 'high'],
},
// Verified directly against GET /api/v3/models (token_limits) on the
// account's ModelArk endpoint; both were missing from the catalog and
// fell back to the unknown-model defaults (8192/2048), which made the
// agent trim requests to a fraction of what these models actually support.
'deepseek-v3-2-251201': {
contextWindowTokens: 131072,
maxInputTokens: 98304,
maxOutputTokens: 32768,
input: ['text'],
supportsTools: true,
reasoning: true,
reasoningEfforts: [],
},
'seed-2-0-pro-260328': {
contextWindowTokens: 262144,
maxInputTokens: 262144,
maxOutputTokens: 131072,
input: ['text', 'image', 'video'],
supportsTools: true,
reasoning: true,
reasoningEfforts: [],
},
};
const OUTPUT_PATH = resolve(
dirname(fileURLToPath(import.meta.url)),
Expand Down