Added support for Mistral 3.2

This commit is contained in:
Thorsten Sommer 2025-12-30 10:48:54 +01:00
parent c836de5a2c
commit a4e523aec3
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -168,7 +168,8 @@ public static partial class ProviderExtensions
Capability.CHAT_COMPLETION_API,
];
if (modelName.IndexOf("3.1") is not -1)
if (modelName.IndexOf("3.1") is not -1 ||
modelName.IndexOf("3.2") is not -1)
return
[
Capability.TEXT_INPUT, Capability.MULTIPLE_IMAGE_INPUT,