feat(ai): add Mistral Medium 3.5 model (#4009)

This commit is contained in:
Johannes Ebeling
2026-04-30 12:18:17 +02:00
committed by GitHub
parent 904b843fee
commit 779d0ef39d
4 changed files with 63 additions and 28 deletions

View File

@@ -587,7 +587,7 @@ function buildToolResultText(text: string, hasImages: boolean, supportsImages: b
}
function usesReasoningEffort(model: Model<"mistral-conversations">): boolean {
return model.id === "mistral-small-2603" || model.id === "mistral-small-latest";
return model.id === "mistral-small-2603" || model.id === "mistral-small-latest" || model.id === "mistral-medium-3.5";
}
function usesPromptModeReasoning(model: Model<"mistral-conversations">): boolean {