use-computer 0.0.3__tar.gz → 0.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {use_computer-0.0.3 → use_computer-0.0.4}/PKG-INFO +3 -1
- {use_computer-0.0.3 → use_computer-0.0.4}/README.md +2 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/pyproject.toml +1 -1
- {use_computer-0.0.3 → use_computer-0.0.4}/.env.example +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/.gitignore +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/.pre-commit-config.yaml +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/examples/ios_quickstart.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/examples/quickstart.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/examples/setup_with_exec.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/examples/upload_file.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/__init__.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/ax_transpile.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/client.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/display.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/errors.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/ios/__init__.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/ios/apps.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/ios/environment.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/ios/input.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/macos/__init__.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/macos/keyboard.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/macos/mouse.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/models.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/parsers.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/py.typed +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/recording.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/retry.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/sandbox.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/screenshot.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/tasks/__init__.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/tasks/templates/pre_command.sh +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/tasks/templates/task.toml +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/tasks/templates/test_ios.sh +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/tasks/templates/test_ios_nograder.sh +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/tasks/templates/test_macos.sh +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/tasks/templates/test_macos_check.sh +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/mmini/tasks/templates/test_macos_nograder.sh +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/use_computer/__init__.py +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/use_computer/py.typed +0 -0
- {use_computer-0.0.3 → use_computer-0.0.4}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: use-computer
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: Python SDK for the use.computer macOS and iOS Computer Use API
|
|
5
5
|
Project-URL: Homepage, https://use.computer
|
|
6
6
|
Project-URL: Documentation, https://api.use.computer/docs
|
|
@@ -62,6 +62,8 @@ finally:
|
|
|
62
62
|
computer.close()
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
+
In runner configs, use `platform: ios`; the runner calls the iOS SDK create path under the hood.
|
|
66
|
+
|
|
65
67
|
## Action DSL
|
|
66
68
|
|
|
67
69
|
Actions are dotted method calls plus args/kwargs. They are useful when a model emits tool-like steps. Given an open macOS `sandbox`:
|
|
@@ -40,6 +40,8 @@ finally:
|
|
|
40
40
|
computer.close()
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
+
In runner configs, use `platform: ios`; the runner calls the iOS SDK create path under the hood.
|
|
44
|
+
|
|
43
45
|
## Action DSL
|
|
44
46
|
|
|
45
47
|
Actions are dotted method calls plus args/kwargs. They are useful when a model emits tool-like steps. Given an open macOS `sandbox`:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|