Skip to content

Commit 0c8642d

Browse files
committed
remove debug
1 parent 1221842 commit 0c8642d

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

eval_protocol/pytest/default_single_turn_rollout_process.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,6 @@ async def process_row(row: EvaluationRow) -> EvaluationRow:
7373
async for chunk in stream: # pyright: ignore[reportGeneralTypeIssues]
7474
chunks.append(chunk)
7575
response = litellm.stream_chunk_builder(chunks, messages_payload)
76-
77-
# Check for reasoning content
78-
print("DEBUG: ", messages_payload)
79-
if hasattr(response.choices[0].message, "reasoning_content"):
80-
print(f"Reasoning: {response.choices[0].message.reasoning_content}")
81-
82-
# Check for thinking blocks
83-
if hasattr(response.choices[0].message, "thinking_blocks"):
84-
print(f"Thinking: {response.choices[0].message.thinking_blocks}")
8576
else:
8677
response = await acompletion(**request_params)
8778

0 commit comments

Comments
 (0)