orgo 0.0.40__tar.gz → 0.0.41__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.
- {orgo-0.0.40 → orgo-0.0.41}/PKG-INFO +47 -47
- {orgo-0.0.40 → orgo-0.0.41}/README.md +31 -31
- {orgo-0.0.40 → orgo-0.0.41}/pyproject.toml +24 -24
- {orgo-0.0.40 → orgo-0.0.41}/setup.cfg +4 -4
- orgo-0.0.41/src/orgo/__init__.py +12 -0
- {orgo-0.0.40 → orgo-0.0.41}/src/orgo/api/__init__.py +5 -5
- {orgo-0.0.40 → orgo-0.0.41}/src/orgo/api/client.py +227 -227
- {orgo-0.0.40 → orgo-0.0.41}/src/orgo/computer.py +491 -471
- {orgo-0.0.40 → orgo-0.0.41}/src/orgo/forge.py +176 -176
- {orgo-0.0.40 → orgo-0.0.41}/src/orgo/project.py +86 -86
- {orgo-0.0.40 → orgo-0.0.41}/src/orgo/prompt.py +1015 -1015
- orgo-0.0.41/src/orgo/template.py +347 -0
- {orgo-0.0.40 → orgo-0.0.41}/src/orgo/utils/__init__.py +5 -5
- {orgo-0.0.40 → orgo-0.0.41}/src/orgo/utils/auth.py +16 -16
- {orgo-0.0.40 → orgo-0.0.41}/src/orgo.egg-info/PKG-INFO +47 -47
- {orgo-0.0.40 → orgo-0.0.41}/src/orgo.egg-info/SOURCES.txt +1 -0
- orgo-0.0.40/src/orgo/__init__.py +0 -11
- {orgo-0.0.40 → orgo-0.0.41}/src/orgo.egg-info/dependency_links.txt +0 -0
- {orgo-0.0.40 → orgo-0.0.41}/src/orgo.egg-info/requires.txt +0 -0
- {orgo-0.0.40 → orgo-0.0.41}/src/orgo.egg-info/top_level.txt +0 -0
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: orgo
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary: Computers for AI agents
|
|
5
|
-
Author: Orgo Team
|
|
6
|
-
License: MIT
|
|
7
|
-
Project-URL: Homepage, https://www.orgo.ai
|
|
8
|
-
Project-URL: Documentation, https://docs.orgo.ai
|
|
9
|
-
Requires-Python: >=3.7
|
|
10
|
-
Description-Content-Type: text/markdown
|
|
11
|
-
Requires-Dist: requests>=2.28.0
|
|
12
|
-
Requires-Dist: pillow>=9.0.0
|
|
13
|
-
Requires-Dist: anthropic>=0.50.0
|
|
14
|
-
Requires-Dist: websocket-client>=1.6.0
|
|
15
|
-
|
|
16
|
-
# Orgo SDK
|
|
17
|
-
|
|
18
|
-
Desktop infrastructure for AI agents.
|
|
19
|
-
|
|
20
|
-
## Install
|
|
21
|
-
|
|
22
|
-
```bash
|
|
23
|
-
pip install orgo
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
## Usage
|
|
27
|
-
|
|
28
|
-
```python
|
|
29
|
-
from orgo import Computer
|
|
30
|
-
|
|
31
|
-
# Create computer
|
|
32
|
-
computer = Computer()
|
|
33
|
-
|
|
34
|
-
# Control
|
|
35
|
-
computer.left_click(100, 200)
|
|
36
|
-
computer.type("Hello world")
|
|
37
|
-
computer.key("Enter")
|
|
38
|
-
computer.screenshot() # Returns PIL Image
|
|
39
|
-
|
|
40
|
-
# Execute Python code
|
|
41
|
-
computer.exec("import pyautogui; pyautogui.click(512, 384)")
|
|
42
|
-
|
|
43
|
-
# Cleanup
|
|
44
|
-
computer.shutdown()
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
Full documentation: [docs.orgo.ai](https://docs.orgo.ai)
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: orgo
|
|
3
|
+
Version: 0.0.41
|
|
4
|
+
Summary: Computers for AI agents
|
|
5
|
+
Author: Orgo Team
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://www.orgo.ai
|
|
8
|
+
Project-URL: Documentation, https://docs.orgo.ai
|
|
9
|
+
Requires-Python: >=3.7
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: requests>=2.28.0
|
|
12
|
+
Requires-Dist: pillow>=9.0.0
|
|
13
|
+
Requires-Dist: anthropic>=0.50.0
|
|
14
|
+
Requires-Dist: websocket-client>=1.6.0
|
|
15
|
+
|
|
16
|
+
# Orgo SDK
|
|
17
|
+
|
|
18
|
+
Desktop infrastructure for AI agents.
|
|
19
|
+
|
|
20
|
+
## Install
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
pip install orgo
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Usage
|
|
27
|
+
|
|
28
|
+
```python
|
|
29
|
+
from orgo import Computer
|
|
30
|
+
|
|
31
|
+
# Create computer
|
|
32
|
+
computer = Computer()
|
|
33
|
+
|
|
34
|
+
# Control
|
|
35
|
+
computer.left_click(100, 200)
|
|
36
|
+
computer.type("Hello world")
|
|
37
|
+
computer.key("Enter")
|
|
38
|
+
computer.screenshot() # Returns PIL Image
|
|
39
|
+
|
|
40
|
+
# Execute Python code
|
|
41
|
+
computer.exec("import pyautogui; pyautogui.click(512, 384)")
|
|
42
|
+
|
|
43
|
+
# Cleanup
|
|
44
|
+
computer.shutdown()
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Full documentation: [docs.orgo.ai](https://docs.orgo.ai)
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
# Orgo SDK
|
|
2
|
-
|
|
3
|
-
Desktop infrastructure for AI agents.
|
|
4
|
-
|
|
5
|
-
## Install
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
pip install orgo
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
## Usage
|
|
12
|
-
|
|
13
|
-
```python
|
|
14
|
-
from orgo import Computer
|
|
15
|
-
|
|
16
|
-
# Create computer
|
|
17
|
-
computer = Computer()
|
|
18
|
-
|
|
19
|
-
# Control
|
|
20
|
-
computer.left_click(100, 200)
|
|
21
|
-
computer.type("Hello world")
|
|
22
|
-
computer.key("Enter")
|
|
23
|
-
computer.screenshot() # Returns PIL Image
|
|
24
|
-
|
|
25
|
-
# Execute Python code
|
|
26
|
-
computer.exec("import pyautogui; pyautogui.click(512, 384)")
|
|
27
|
-
|
|
28
|
-
# Cleanup
|
|
29
|
-
computer.shutdown()
|
|
30
|
-
```
|
|
31
|
-
|
|
1
|
+
# Orgo SDK
|
|
2
|
+
|
|
3
|
+
Desktop infrastructure for AI agents.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install orgo
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
from orgo import Computer
|
|
15
|
+
|
|
16
|
+
# Create computer
|
|
17
|
+
computer = Computer()
|
|
18
|
+
|
|
19
|
+
# Control
|
|
20
|
+
computer.left_click(100, 200)
|
|
21
|
+
computer.type("Hello world")
|
|
22
|
+
computer.key("Enter")
|
|
23
|
+
computer.screenshot() # Returns PIL Image
|
|
24
|
+
|
|
25
|
+
# Execute Python code
|
|
26
|
+
computer.exec("import pyautogui; pyautogui.click(512, 384)")
|
|
27
|
+
|
|
28
|
+
# Cleanup
|
|
29
|
+
computer.shutdown()
|
|
30
|
+
```
|
|
31
|
+
|
|
32
32
|
Full documentation: [docs.orgo.ai](https://docs.orgo.ai)
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
-
build-backend = "setuptools.build_meta"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "orgo"
|
|
7
|
-
version = "0.0.
|
|
8
|
-
description = "Computers for AI agents"
|
|
9
|
-
authors = [{name = "Orgo Team"}]
|
|
10
|
-
license = {text = "MIT"}
|
|
11
|
-
readme = "README.md"
|
|
12
|
-
requires-python = ">=3.7"
|
|
13
|
-
dependencies = [
|
|
14
|
-
"requests>=2.28.0",
|
|
15
|
-
"pillow>=9.0.0",
|
|
16
|
-
"anthropic>=0.50.0",
|
|
17
|
-
"websocket-client>=1.6.0",
|
|
18
|
-
]
|
|
19
|
-
|
|
20
|
-
[project.urls]
|
|
21
|
-
"Homepage" = "https://www.orgo.ai"
|
|
22
|
-
"Documentation" = "https://docs.orgo.ai"
|
|
23
|
-
|
|
24
|
-
[tool.setuptools]
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "orgo"
|
|
7
|
+
version = "0.0.41"
|
|
8
|
+
description = "Computers for AI agents"
|
|
9
|
+
authors = [{name = "Orgo Team"}]
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
readme = "README.md"
|
|
12
|
+
requires-python = ">=3.7"
|
|
13
|
+
dependencies = [
|
|
14
|
+
"requests>=2.28.0",
|
|
15
|
+
"pillow>=9.0.0",
|
|
16
|
+
"anthropic>=0.50.0",
|
|
17
|
+
"websocket-client>=1.6.0",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
"Homepage" = "https://www.orgo.ai"
|
|
22
|
+
"Documentation" = "https://docs.orgo.ai"
|
|
23
|
+
|
|
24
|
+
[tool.setuptools]
|
|
25
25
|
package-dir = {"" = "src"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[egg_info]
|
|
2
|
-
tag_build =
|
|
3
|
-
tag_date = 0
|
|
4
|
-
|
|
1
|
+
[egg_info]
|
|
2
|
+
tag_build =
|
|
3
|
+
tag_date = 0
|
|
4
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# src/orgo/__init__.py
|
|
2
|
+
"""Orgo SDK: Desktop infrastructure for AI agents"""
|
|
3
|
+
|
|
4
|
+
from .project import Project
|
|
5
|
+
from .computer import Computer
|
|
6
|
+
from .template import Template
|
|
7
|
+
|
|
8
|
+
# Aliases
|
|
9
|
+
Workspace = Project # Workspace is an alias for Project
|
|
10
|
+
Forge = Template # Forge is deprecated, use Template instead
|
|
11
|
+
|
|
12
|
+
__all__ = ["Project", "Workspace", "Computer", "Template", "Forge"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# src/orgo/api/__init__.py
|
|
2
|
-
"""API package for Orgo SDK"""
|
|
3
|
-
|
|
4
|
-
from .client import ApiClient
|
|
5
|
-
|
|
1
|
+
# src/orgo/api/__init__.py
|
|
2
|
+
"""API package for Orgo SDK"""
|
|
3
|
+
|
|
4
|
+
from .client import ApiClient
|
|
5
|
+
|
|
6
6
|
__all__ = ["ApiClient"]
|