Change Gemini system instruction parameter key to `systemInstruction` Refer to https://github.com/googleapis/python-genai/blob/main/google/genai/models.py#L772, it seems like both work(?) but this is probably the more correct option if the newer library is using it

b6e7f4f493ec114845ae56dd2ffc0f0b3fd3c7e4

Fizz~ <168598314+fizzAI@users.noreply.github.com>

Signed
1 files changed, +1 -1Showing whitespace changes
src/endpoints/backends/chat-completions.js+1 -1
@@ -315,7 +315,7 @@ async function sendMakerSuiteRequest(request, response) {
315 };315 };
316316
317 if (should_use_system_prompt) {317 if (should_use_system_prompt) {
318 body.system_instruction = prompt.system_instruction;318 body.systemInstruction = prompt.system_instruction;
319 }319 }
320320
321 return body;321 return body;