Whitespace clean-up

9062b6bc4dfc33987293adbe6904ab0e000d20f7

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -2Ignore whitespace
src/endpoints/backends/chat-completions.js+1 -2
@@ -309,7 +309,7 @@ async function sendMakerSuiteRequest(request, response) {
309309
310 const prompt = convertGooglePrompt(request.body.messages, model, should_use_system_prompt, getPromptNames(request));310 const prompt = convertGooglePrompt(request.body.messages, model, should_use_system_prompt, getPromptNames(request));
311 let safetySettings = GEMINI_SAFETY;311 let safetySettings = GEMINI_SAFETY;
312 312
313 if (model.includes('gemini-2.0-flash-exp')) {313 if (model.includes('gemini-2.0-flash-exp')) {
314 safetySettings = GEMINI_SAFETY.map(setting => ({ ...setting, threshold: 'OFF' }));314 safetySettings = GEMINI_SAFETY.map(setting => ({ ...setting, threshold: 'OFF' }));
315 }315 }
@@ -320,7 +320,6 @@ async function sendMakerSuiteRequest(request, response) {
320 generationConfig: generationConfig,320 generationConfig: generationConfig,
321 };321 };
322322
323
324 if (should_use_system_prompt) {323 if (should_use_system_prompt) {
325 body.system_instruction = prompt.system_instruction;324 body.system_instruction = prompt.system_instruction;
326 }325 }