-
Notifications
You must be signed in to change notification settings - Fork 918
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Make text() accessor handle mixed-parts responses #8229
Conversation
|
Size Report 1Affected Products
Test Logs |
Size Analysis Report 1Affected Products
Test Logs |
if (textStrings.length > 0) { | ||
return textStrings.join(''); | ||
} else { | ||
return ''; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we remove the conditional and just return textStrings.join('')
, since [].join('') === ''
? Or do we prefer to make the return result more explicit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Andrew brought up that we're not 100% sure we want the delimiter to be ''
when there's multiple text Parts and this is a placeholder for now until we find out, so maybe in the future we might make it a space, or a comma, which could cause some unintended output if we forgot we meant to return ''
when there's no Parts.
response.text()
only works when the firstPart
in the candidate has text, and fails if it's mixed in withFunctionCallPart
s. Modified to look for text on anyPart
and added some tests.We also need to port this fix to GoogleAI.
Internal reference: b/338296397