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

@@ -923,3 +923,10 @@ class PDFParsingError(SkyvernException):
super().__init__(
f"Failed to parse PDF '{file_identifier}'. pypdf error: {pypdf_error}; pdfplumber error: {pdfplumber_error}"
)
class ImaginarySecretValue(SkyvernException):
def __init__(self, value: str) -> None:
super().__init__(
f"The value {value} is imaginary. Try to double-check to see if this value is included in the provided information"
)