Files
Dorod-Sky/skyvern/client/environment.py

10 lines
243 B
Python
Raw Normal View History

2025-02-19 00:58:48 +08:00
# This file was auto-generated by Fern from our API Definition.
import enum
class SkyvernEnvironment(enum.Enum):
PRODUCTION = "https://api.skyvern.com"
STAGING = "https://api-staging.skyvern.com"
2025-10-17 13:15:24 -06:00
LOCAL = "http://localhost:8000"