fix: avoid enforce bearer for mistral in input

This commit is contained in:
Bima42
2026-02-02 11:45:45 +01:00
parent c31e970172
commit 2b72b4888c

View File

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