9 lines
237 B
Python
9 lines
237 B
Python
from pathlib import Path
|
|
|
|
# This is the attribute name used to tag interactable elements
|
|
SKYVERN_ID_ATTR: str = "unique_id"
|
|
SKYVERN_DIR = Path(__file__).parent
|
|
REPO_ROOT_DIR = SKYVERN_DIR.parent
|
|
|
|
INPUT_TEXT_TIMEOUT = 120000 # 2 minutes
|