@@ -228,7 +228,7 @@ async def test_single_model_all(
228228 model_results [method_name ] = "⊘ Not available"
229229
230230 # Test tool calling with predict_and_call
231- logger .info (f " Testing tool_calling..." )
231+ logger .info (" Testing tool_calling..." )
232232 try :
233233 if hasattr (model , "apredict_and_call" ):
234234 response = await model .apredict_and_call (
@@ -241,17 +241,17 @@ async def test_single_model_all(
241241 logger .info (f" Tool calls detected: { tool_calls_count } " )
242242 model_results ["tool_calling" ] = f"✓ ({ tool_calls_count } calls)"
243243 else :
244- logger .warning (f " No tool calls detected" )
244+ logger .warning (" No tool calls detected" )
245245 model_results ["tool_calling" ] = "✗ No tool calls detected"
246246 else :
247- logger .warning (f " Tool calling not available" )
247+ logger .warning (" Tool calling not available" )
248248 model_results ["tool_calling" ] = "⊘ Not available"
249249 except Exception as e :
250250 logger .error (f" Tool calling failed: { e } " )
251251 model_results ["tool_calling" ] = f"✗ { format_error_message (str (e ))} "
252252
253253 # Test structured output
254- logger .info (f " Testing structured_output..." )
254+ logger .info (" Testing structured_output..." )
255255 try :
256256 if hasattr (model , "as_structured_llm" ):
257257 sllm = model .as_structured_llm (PersonInfo )
@@ -269,7 +269,7 @@ async def test_single_model_all(
269269 logger .warning (f" Response is not PersonInfo: { type (response )} " )
270270 model_results ["structured_output" ] = f"✗ Wrong type: { type (response )} "
271271 else :
272- logger .warning (f " Structured output not available" )
272+ logger .warning (" Structured output not available" )
273273 model_results ["structured_output" ] = "⊘ Not available"
274274 except Exception as e :
275275 logger .error (f" Structured output failed: { e } " )
@@ -357,7 +357,7 @@ async def run_tests(self, ev: TestInput) -> TestOutput:
357357 logger .info ("TEST RESULTS" )
358358 logger .info ("=" * 80 )
359359 logger .info (f"Success: { not has_failures } " )
360- logger .info (f "Summary:\n " + "\n " .join (summary_lines ))
360+ logger .info ("Summary:\n " + "\n " .join (summary_lines ))
361361 logger .info (f"Chunks Received: { total_result .chunks } " )
362362 logger .info (f"Content Length: { total_result .content_length } " )
363363 logger .info (f"Tool Calls: { total_result .tool_calls } " )
0 commit comments