We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1221842 commit 0c8642dCopy full SHA for 0c8642d
eval_protocol/pytest/default_single_turn_rollout_process.py
@@ -73,15 +73,6 @@ async def process_row(row: EvaluationRow) -> EvaluationRow:
73
async for chunk in stream: # pyright: ignore[reportGeneralTypeIssues]
74
chunks.append(chunk)
75
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}")
85
else:
86
response = await acompletion(**request_params)
87
0 commit comments