feat: update provider and action space in DesktopEnv class

- Changed the default provider name from "aws" to "vmware" to reflect new environment requirements.
- Updated the action space from "computer_13" to "pyautogui" for improved interaction capabilities.
- Maintained existing class structure and logic while implementing these updates for better functionality.
This commit is contained in:
yuanmengqi
2025-07-29 06:48:41 +00:00
parent af64f4ef49
commit 00804f8118

View File

@@ -98,11 +98,11 @@ class DesktopEnv(gym.Env):
"""
def __init__(
self,
provider_name: str = "aws",
provider_name: str = "vmware",
region: str = None,
path_to_vm: str = None,
snapshot_name: str = "init_state",
action_space: str = "computer_13",
action_space: str = "pyautogui",
cache_dir: str = "cache",
screen_size: Tuple[int] = (int(os.environ.get("SCREEN_WIDTH", 1920)), int(os.environ.get("SCREEN_HEIGHT", 1080))),
headless: bool = False,