Fix https://github.com/xlang-ai/OSWorld/issues/21 ; Update README for multimodal agents; Add badge in README; Add setup.py
This commit is contained in:
@@ -17,7 +17,7 @@ def download_and_unzip_vm():
|
||||
# Determine the platform and CPU architecture to decide the correct VM image to download
|
||||
if platform.machine() == 'arm64': # macOS with Apple Silicon
|
||||
url = "https://huggingface.co/datasets/xlangai/ubuntu_arm/resolve/main/Ubuntu.zip"
|
||||
elif platform.machine().lower() == 'amd64':
|
||||
elif platform.machine().lower() in ['amd64', "x86_64"]:
|
||||
url = "https://huggingface.co/datasets/xlangai/ubuntu_x86/resolve/main/Ubuntu.zip"
|
||||
else:
|
||||
raise Exception("Unsupported platform or architecture")
|
||||
|
||||
Reference in New Issue
Block a user