optimize secrete value input (#4457)

This commit is contained in:
LawyZheng
2026-01-15 15:58:07 +08:00
committed by GitHub
parent 95cb87119f
commit 55c71e7e3e
3 changed files with 23 additions and 2 deletions

View File

@@ -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))