Fix functionResponse part merging

fa699956e674eab6611b6205f1f7f5a5240bd666

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

1 files changed, +1 -1Ignore whitespace
src/prompt-converters.js+1 -1
@@ -507,7 +507,7 @@ export function convertGooglePrompt(messages, model, useSysPrompt, names) {
507507 if (part.text) {
508508 contents[contents.length - 1].parts[0].text += '\n\n' + part.text;
509509 }
510510 if (part.inlineData || part.functionCall || part.functionResponse) {
511511 contents[contents.length - 1].parts.push(part);
512512 }
513513 });