Skip to content

Commit e8df63d

Browse files
committed
Run formatter
1 parent 0f106fc commit e8df63d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/ai/src/requests/response-helpers.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,10 @@ export function addHelpers(
168168
* which represent the model's internal reasoning. If `false`, extracts text from
169169
* regular response parts.
170170
*/
171-
export function getText(response: GenerateContentResponse, isThought: boolean): string {
171+
export function getText(
172+
response: GenerateContentResponse,
173+
isThought: boolean
174+
): string {
172175
const textStrings = [];
173176
if (response.candidates?.[0].content?.parts) {
174177
for (const part of response.candidates?.[0].content?.parts) {

0 commit comments

Comments
 (0)