We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57eb973 commit 78dceb2Copy full SHA for 78dceb2
bigcodebench/provider/anthropic.py
@@ -52,9 +52,9 @@ def codegen(
52
output = ""
53
for chunk in ret:
54
if chunk.type == "content_block_delta":
55
- if chunk.delta.type == "thinking_delta":
56
- output += chunk.delta.thinking
57
- elif chunk.delta.type == "text_delta":
+ # if chunk.delta.type == "thinking_delta":
+ # output += chunk.delta.thinking
+ if chunk.delta.type == "text_delta":
58
output += chunk.delta.text
59
outputs.append(output)
60
else:
0 commit comments