Support ISP Proxies in Skyvern (#1823)

This commit is contained in:
Shuchang Zheng
2025-02-24 06:29:12 -08:00
committed by GitHub
parent 2a2c6f1cb4
commit 23744b3039
3 changed files with 8 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ class ProxyLocation(StrEnum):
RESIDENTIAL_JP = "RESIDENTIAL_JP"
RESIDENTIAL_FR = "RESIDENTIAL_FR"
RESIDENTIAL_DE = "RESIDENTIAL_DE"
RESIDENTIAL_ISP = "RESIDENTIAL_ISP"
NONE = "NONE"
@@ -72,6 +73,9 @@ def get_tzinfo_from_proxy(proxy_location: ProxyLocation) -> ZoneInfo | None:
if proxy_location == ProxyLocation.RESIDENTIAL_DE:
return ZoneInfo("Europe/Berlin")
if proxy_location == ProxyLocation.RESIDENTIAL_ISP:
return ZoneInfo("America/New_York")
return None