Observer code open source (#1417)

This commit is contained in:
Shuchang Zheng
2024-12-19 17:26:08 -08:00
committed by GitHub
parent bd0d6a5920
commit a12776e630
12 changed files with 1071 additions and 16 deletions

View File

@@ -552,3 +552,8 @@ class InteractWithDropdownContainer(SkyvernException):
super().__init__(
f"Select on the dropdown container instead of the option, try again with another element. element_id={element_id}"
)
class UrlGenerationFailure(SkyvernHTTPException):
def __init__(self) -> None:
super().__init__("Failed to generate the url for the prompt")