File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -340,7 +340,7 @@ async def _process_task_streaming( # pylint: disable=too-many-locals
340340 stream = await client .responses .create (** responses_params .model_dump ())
341341 except APIConnectionError as e :
342342 error_message = (
343- f"Unable to connect to Llama Stack backend service: { str ( e ) } . "
343+ f"Unable to connect to Llama Stack backend service: { e !s } . "
344344 "The service may be temporarily unavailable. Please try again later."
345345 )
346346 logger .error (
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ async def get_providers_health_statuses() -> list[ProviderHealthStatus]:
9191 ProviderHealthStatus (
9292 provider_id = "unknown" ,
9393 status = HealthStatus .ERROR .value ,
94- message = f"Failed to initialize health check: { str ( e ) } " ,
94+ message = f"Failed to initialize health check: { e !s } " ,
9595 )
9696 ]
9797
You can’t perform that action at this time.
0 commit comments