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 -1Ignore whitespace
src/endpoints/backends/chat-completions.js+1 -1
@@ -315,7 +315,7 @@ async function sendMakerSuiteRequest(request, response) {
315315 };
316316
317317 if (should_use_system_prompt) {
318318 body.system_instructionsystemInstruction = prompt.system_instruction;
319319 }
320320
321321 return body;