🩹(summary) fix missing f-string
Spotted by code rabbit. Missing F-string was leading to an unexpected behavior.
This commit is contained in:
committed by
aleb_the_flash
parent
aff87d4953
commit
b5895ccba0
@@ -141,4 +141,4 @@ class LLMService:
|
|||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self._logger.exception("LLM call failed: %s", 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
|
||||||
|
|||||||
Reference in New Issue
Block a user