orgo 0.0.7__tar.gz → 0.0.8__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.7 → orgo-0.0.8}/PKG-INFO +1 -1
- {orgo-0.0.7 → orgo-0.0.8}/pyproject.toml +1 -1
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo/computer.py +1 -1
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo.egg-info/PKG-INFO +1 -1
- {orgo-0.0.7 → orgo-0.0.8}/README.md +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/setup.cfg +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo/__init__.py +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo/adapters/__init__.py +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo/adapters/anthropic.py +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo/adapters/base.py +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo/adapters/openai.py +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo/api/__init__.py +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo/api/client.py +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo/utils/__init__.py +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo/utils/auth.py +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo.egg-info/SOURCES.txt +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo.egg-info/dependency_links.txt +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo.egg-info/requires.txt +0 -0
- {orgo-0.0.7 → orgo-0.0.8}/src/orgo.egg-info/top_level.txt +0 -0
|
@@ -65,7 +65,7 @@ class Computer:
|
|
|
65
65
|
def screenshot(self) -> Image.Image:
|
|
66
66
|
"""Capture screenshot and return as PIL Image"""
|
|
67
67
|
response = self.api.get_screenshot(self.project_id)
|
|
68
|
-
img_data = base64.b64decode(response.get("
|
|
68
|
+
img_data = base64.b64decode(response.get("image", ""))
|
|
69
69
|
return Image.open(io.BytesIO(img_data))
|
|
70
70
|
|
|
71
71
|
def screenshot_base64(self) -> str:
|
|
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
|