fix(models): support new qwen3 model (#8380)

feat(models): 添加对qwen-plus-0714和qwen-turbo-0715模型的支持
This commit is contained in:
Phantom 2025-07-22 18:30:23 +08:00 committed by GitHub
parent ea3b8a4d64
commit 27977fc02b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2605,10 +2605,14 @@ export function isSupportedThinkingTokenQwenModel(model?: Model): boolean {
'qwen-plus-latest',
'qwen-plus-0428',
'qwen-plus-2025-04-28',
'qwen-plus-0714',
'qwen-plus-2025-07-14',
'qwen-turbo',
'qwen-turbo-latest',
'qwen-turbo-0428',
'qwen-turbo-2025-04-28'
'qwen-turbo-2025-04-28',
'qwen-turbo-0715',
'qwen-turbo-2025-07-15'
].includes(baseName)
)
}