Skip to content

Commit e62c55e

Browse files
committed
update google thinking model api
1 parent 6ffa085 commit e62c55e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

bigcodebench/provider/google.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,7 @@ def codegen(
4343
for candidate in ret.candidates:
4444
parts = candidate.content.parts
4545
if parts:
46-
if "-thinking-" in self.name:
47-
outputs.append(parts[1].text)
48-
else:
49-
outputs.append(parts[0].text)
46+
outputs.append(parts[0].text)
5047
else:
5148
print("Empty response!")
5249
outputs.append("")

0 commit comments

Comments
 (0)