tweak: adjust minimax m2 topK and add minimax m2.1 topP

This commit is contained in:
Aiden Cline 2025-12-21 21:17:51 -06:00
parent d4b7f75ce3
commit 8785bec29c

View file

@ -227,13 +227,16 @@ export namespace ProviderTransform {
export function topP(model: Provider.Model) {
const id = model.id.toLowerCase()
if (id.includes("qwen")) return 1
if (id.includes("minimax-m2")) return 0.95
if (id.includes("minimax-m2")) {
if (id.includes("m2.1")) return 0.9
return 0.95
}
return undefined
}
export function topK(model: Provider.Model) {
const id = model.id.toLowerCase()
if (id.includes("minimax-m2")) return 40
if (id.includes("minimax-m2")) return 20
return undefined
}