optimize secrete value input (#4457)
This commit is contained in:
@@ -39,6 +39,7 @@ from skyvern.exceptions import (
|
||||
FailToSelectByValue,
|
||||
IllegitComplete,
|
||||
ImaginaryFileUrl,
|
||||
ImaginarySecretValue,
|
||||
InputToInvisibleElement,
|
||||
InputToReadonlyElement,
|
||||
InteractWithDisabledElement,
|
||||
@@ -595,6 +596,9 @@ class ActionHandler:
|
||||
except LLMProviderError as e:
|
||||
LOG.exception("LLM error in action handler", action=action, exc_info=True)
|
||||
actions_result.append(ActionFailure(e))
|
||||
except ImaginarySecretValue as e:
|
||||
LOG.exception("Imaginary secret value", action=action, exc_info=True)
|
||||
actions_result.append(ActionFailure(e))
|
||||
except Exception as e:
|
||||
LOG.exception("Unhandled exception in action handler", action=action)
|
||||
actions_result.append(ActionFailure(e))
|
||||
|
||||
Reference in New Issue
Block a user