computer-use-ootb-internal 0.0.123__py3-none-any.whl → 0.0.125__py3-none-any.whl
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.
- computer_use_ootb_internal/app_teachmode.py +533 -533
- computer_use_ootb_internal/computer_use_demo/animation/test_animation.py +39 -39
- computer_use_ootb_internal/computer_use_demo/tools/base.py +1 -24
- computer_use_ootb_internal/guard_service.py +810 -810
- computer_use_ootb_internal/preparation/star_rail_prepare.py +64 -64
- computer_use_ootb_internal/service_manager.py +194 -194
- {computer_use_ootb_internal-0.0.123.dist-info → computer_use_ootb_internal-0.0.125.dist-info}/METADATA +9 -8
- {computer_use_ootb_internal-0.0.123.dist-info → computer_use_ootb_internal-0.0.125.dist-info}/RECORD +10 -10
- computer_use_ootb_internal-0.0.125.dist-info/entry_points.txt +4 -0
- computer_use_ootb_internal-0.0.123.dist-info/entry_points.txt +0 -2
- {computer_use_ootb_internal-0.0.123.dist-info → computer_use_ootb_internal-0.0.125.dist-info}/WHEEL +0 -0
@@ -1,40 +1,40 @@
|
|
1
|
-
"""
|
2
|
-
Test script to verify cursor animation is working
|
3
|
-
"""
|
4
|
-
import asyncio
|
5
|
-
import sys
|
6
|
-
import time
|
7
|
-
from pathlib import Path
|
8
|
-
from computer_use_ootb_internal.computer_use_demo.tools.computer import ComputerTool
|
9
|
-
|
10
|
-
async def test_animations():
|
11
|
-
|
12
|
-
# Initialize the computer tool
|
13
|
-
computer = ComputerTool()
|
14
|
-
|
15
|
-
# Test mouse move animation
|
16
|
-
print("Testing mouse move animation...")
|
17
|
-
await computer(action="mouse_move_windll", coordinate=(500, 500))
|
18
|
-
print("Waiting 2 seconds...")
|
19
|
-
await asyncio.sleep(2)
|
20
|
-
|
21
|
-
# Test click animation
|
22
|
-
print("Testing click animation...")
|
23
|
-
await computer(action="left_click_windll", coordinate=(700, 300))
|
24
|
-
print("Waiting 2 seconds...")
|
25
|
-
await asyncio.sleep(2)
|
26
|
-
|
27
|
-
# Test another move
|
28
|
-
print("Testing move and click sequence...")
|
29
|
-
await computer(action="mouse_move_windll", coordinate=(300, 300))
|
30
|
-
await asyncio.sleep(1)
|
31
|
-
await computer(action="left_click_windll", coordinate=(300, 300))
|
32
|
-
|
33
|
-
# Wait for animations to complete
|
34
|
-
print("Waiting for animations to complete...")
|
35
|
-
await asyncio.sleep(3)
|
36
|
-
|
37
|
-
print("Test completed")
|
38
|
-
|
39
|
-
if __name__ == "__main__":
|
1
|
+
"""
|
2
|
+
Test script to verify cursor animation is working
|
3
|
+
"""
|
4
|
+
import asyncio
|
5
|
+
import sys
|
6
|
+
import time
|
7
|
+
from pathlib import Path
|
8
|
+
from computer_use_ootb_internal.computer_use_demo.tools.computer import ComputerTool
|
9
|
+
|
10
|
+
async def test_animations():
|
11
|
+
|
12
|
+
# Initialize the computer tool
|
13
|
+
computer = ComputerTool()
|
14
|
+
|
15
|
+
# Test mouse move animation
|
16
|
+
print("Testing mouse move animation...")
|
17
|
+
await computer(action="mouse_move_windll", coordinate=(500, 500))
|
18
|
+
print("Waiting 2 seconds...")
|
19
|
+
await asyncio.sleep(2)
|
20
|
+
|
21
|
+
# Test click animation
|
22
|
+
print("Testing click animation...")
|
23
|
+
await computer(action="left_click_windll", coordinate=(700, 300))
|
24
|
+
print("Waiting 2 seconds...")
|
25
|
+
await asyncio.sleep(2)
|
26
|
+
|
27
|
+
# Test another move
|
28
|
+
print("Testing move and click sequence...")
|
29
|
+
await computer(action="mouse_move_windll", coordinate=(300, 300))
|
30
|
+
await asyncio.sleep(1)
|
31
|
+
await computer(action="left_click_windll", coordinate=(300, 300))
|
32
|
+
|
33
|
+
# Wait for animations to complete
|
34
|
+
print("Waiting for animations to complete...")
|
35
|
+
await asyncio.sleep(3)
|
36
|
+
|
37
|
+
print("Test completed")
|
38
|
+
|
39
|
+
if __name__ == "__main__":
|
40
40
|
asyncio.run(test_animations())
|
@@ -28,32 +28,9 @@ class ToolResult:
|
|
28
28
|
error: str | None = None
|
29
29
|
base64_image: str | None = None
|
30
30
|
system: str | None = None
|
31
|
+
type: str | None = "action"
|
31
32
|
action_base_type: str | None = None
|
32
33
|
|
33
|
-
def __bool__(self):
|
34
|
-
return any(getattr(self, field.name) for field in fields(self))
|
35
|
-
|
36
|
-
def __add__(self, other: "ToolResult"):
|
37
|
-
def combine_fields(
|
38
|
-
field: str | None, other_field: str | None, concatenate: bool = True
|
39
|
-
):
|
40
|
-
if field and other_field:
|
41
|
-
if concatenate:
|
42
|
-
return field + other_field
|
43
|
-
raise ValueError("Cannot combine tool results")
|
44
|
-
return field or other_field
|
45
|
-
|
46
|
-
return ToolResult(
|
47
|
-
output=combine_fields(self.output, other.output),
|
48
|
-
error=combine_fields(self.error, other.error),
|
49
|
-
base64_image=combine_fields(self.base64_image, other.base64_image, False),
|
50
|
-
system=combine_fields(self.system, other.system),
|
51
|
-
)
|
52
|
-
|
53
|
-
def replace(self, **kwargs):
|
54
|
-
"""Returns a new ToolResult with the given fields replaced."""
|
55
|
-
return replace(self, **kwargs)
|
56
|
-
|
57
34
|
|
58
35
|
class CLIResult(ToolResult):
|
59
36
|
"""A ToolResult that can be rendered as a CLI output."""
|