Merge pull request #3580 from Bima42/fix/mistral-modal-require-bearer

fix: double bearer for mistral provider
This commit is contained in:
Mauricio Siu
2026-02-02 10:30:15 -06:00
committed by GitHub

View File

@@ -103,7 +103,7 @@ export const getProviderHeaders = (
// Mistral
if (apiUrl.includes("mistral")) {
return {
Authorization: apiKey,
Authorization: `Bearer ${apiKey}`,
};
}