add logs and some bugs fixes

This commit is contained in:
queukat 2024-08-31 23:45:10 +03:00
parent 966e610fee
commit 0c4ae18064

View File

@ -57,7 +57,7 @@ def parse_wait_time_from_error_message(error_message: str) -> int:
elif unit == 'd':
return value * 86400
logger.debug("Default wait time applied: 30 seconds")
return 30 # По умолчанию ждать 30 секунд, если не удалось разобрать время
return 30
class LLMLogger: