Mistral API being weird, part 2

This commit is contained in:
Cohee 2024-01-12 17:40:29 +02:00
parent e33ac6a78a
commit 397acbb699
1 changed files with 1 additions and 0 deletions

View File

@ -545,6 +545,7 @@ router.post('/status', jsonParser, async function (request, response_getstatus_o
} else if (request.body.chat_completion_source === CHAT_COMPLETION_SOURCES.MISTRALAI) {
api_url = 'https://api.mistral.ai/v1';
api_key_openai = readSecret(SECRET_KEYS.MISTRALAI);
headers = { 'Content-Length': '0' }; // WTF?
} else if (request.body.chat_completion_source === CHAT_COMPLETION_SOURCES.CUSTOM) {
api_url = request.body.custom_url;
api_key_openai = readSecret(SECRET_KEYS.CUSTOM);