diff --git a/packages/llms/src/utils.ts b/packages/llms/src/utils.ts index 5863e21..bc776b2 100644 --- a/packages/llms/src/utils.ts +++ b/packages/llms/src/utils.ts @@ -34,8 +34,8 @@ export function modelPatch(body: Record) { const modelName = normalizeModelName(model) - if (modelName.startsWith('qwen3')) { - debug('Applying Qwen-3 patch: use higher temperature for auto fixing') + if (modelName.startsWith('qwen')) { + debug('Applying Qwen patch: use higher temperature for auto fixing') body.temperature = Math.max(body.temperature || 0, 1.0) }