orgo 0.0.16__tar.gz → 0.0.17__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orgo
3
- Version: 0.0.16
3
+ Version: 0.0.17
4
4
  Summary: Computers for AI agents
5
5
  Author: Orgo Team
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "orgo"
7
- version = "0.0.16"
7
+ version = "0.0.17"
8
8
  description = "Computers for AI agents"
9
9
  authors = [{name = "Orgo Team"}]
10
10
  license = {text = "MIT"}
@@ -297,8 +297,9 @@ class AnthropicProvider:
297
297
  for img_block in images_to_remove:
298
298
  content_item = img_block["content_item"]
299
299
  if "source" in content_item and "data" in content_item["source"]:
300
- # Replace the base64 data with a placeholder
301
- content_item["source"]["data"] = "[IMAGE DATA REMOVED]"
300
+ # Replace with a minimal valid base64 image (1x1 transparent PNG)
301
+ content_item["source"]["data"] = "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNkYPhfDwAChwGA60e6kgAAAABJRU5ErkJggg=="
302
+ content_item["source"]["media_type"] = "image/png"
302
303
 
303
304
  def _execute_tool(self,
304
305
  computer_id: str,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orgo
3
- Version: 0.0.16
3
+ Version: 0.0.17
4
4
  Summary: Computers for AI agents
5
5
  Author: Orgo Team
6
6
  License: MIT
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