@@ -143,17 +143,6 @@ def _safe_json_loads(payload: str) -> Any | None:
143143def test_glm_streaming_structured_output (row : EvaluationRow ) -> EvaluationRow :
144144 """Ensure structured output arrives in assistant content when streaming."""
145145
146- import os
147-
148- print (
149- "DEBUG completion params" ,
150- os .environ .get ("EP_COMPLETION_PARAMS_JSON" ),
151- "key len" ,
152- len (os .environ .get ("FIREWORKS_API_KEY" , "" )),
153- "acct" ,
154- os .environ .get ("FIREWORKS_ACCOUNT_ID" ),
155- )
156-
157146 assistant_msg = row .last_assistant_message ()
158147 if assistant_msg is None :
159148 row .evaluation_result = EvaluateResult (
@@ -257,17 +246,6 @@ def test_glm_streaming_structured_output(row: EvaluationRow) -> EvaluationRow:
257246def test_glm_streaming_tool_call (row : EvaluationRow ) -> EvaluationRow :
258247 """Ensure streaming tool calls settle with finish_reason=tool_calls and a single call."""
259248
260- import os
261-
262- print (
263- "DEBUG completion params" ,
264- os .environ .get ("EP_COMPLETION_PARAMS_JSON" ),
265- "key len" ,
266- len (os .environ .get ("FIREWORKS_API_KEY" , "" )),
267- "acct" ,
268- os .environ .get ("FIREWORKS_ACCOUNT_ID" ),
269- )
270-
271249 assistant_msg = row .last_assistant_message ()
272250 if assistant_msg is None :
273251 row .evaluation_result = EvaluateResult (
0 commit comments