From 00804f811874ea34ddfdd2e6b3a2fe307311f57c Mon Sep 17 00:00:00 2001 From: yuanmengqi Date: Tue, 29 Jul 2025 06:48:41 +0000 Subject: [PATCH] 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. --- desktop_env/desktop_env.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop_env/desktop_env.py b/desktop_env/desktop_env.py index 270b1b6..2641a46 100644 --- a/desktop_env/desktop_env.py +++ b/desktop_env/desktop_env.py @@ -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,