🩹(summary) fix missing f-string

Spotted by code rabbit. Missing F-string was leading
to an unexpected behavior.
This commit is contained in:
lebaudantoine
2025-12-19 14:22:07 +01:00
committed by aleb_the_flash
parent aff87d4953
commit b5895ccba0

View File

@@ -141,4 +141,4 @@ class LLMService:
except Exception as e:
self._logger.exception("LLM call failed: %s", e)
raise LLMException("LLM call failed: {e}") from e
raise LLMException(f"LLM call failed: {e}") from e