Mistral API being weird, part 2

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

View File

@ -540,6 +540,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);