Improve LLM error message when LLM is down (#3874)

This commit is contained in:
pedrohsdb
2025-10-31 11:41:07 -07:00
committed by GitHub
parent 393bae88fe
commit 0e0ae81693
2 changed files with 93 additions and 1 deletions

View File

@@ -1,5 +1,9 @@
from skyvern.exceptions import SkyvernException
# Exception type name constants
LLM_PROVIDER_ERROR_TYPE = "LLMProviderError"
LLM_PROVIDER_ERROR_RETRYABLE_TASK_TYPE = "LLMProviderErrorRetryableTask"
class BaseLLMError(SkyvernException):
pass