orgo 0.0.26__tar.gz → 0.0.27__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.26
3
+ Version: 0.0.27
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.26"
7
+ version = "0.0.27"
8
8
  description = "Computers for AI agents"
9
9
  authors = [{name = "Orgo Team"}]
10
10
  license = {text = "MIT"}
@@ -1,6 +1,5 @@
1
1
  """Computer class for interacting with Orgo virtual environments"""
2
- import os
3
- import io
2
+ import os as operating_system
4
3
  import base64
5
4
  import logging
6
5
  import uuid
@@ -50,7 +49,7 @@ class Computer:
50
49
  # Connect to existing computer in project
51
50
  computer = Computer(project="manus")
52
51
  """
53
- self.api_key = api_key or os.environ.get("ORGO_API_KEY")
52
+ self.api_key = api_key or operating_system.environ.get("ORGO_API_KEY")
54
53
  self.base_api_url = base_api_url
55
54
  self.api = ApiClient(self.api_key, self.base_api_url)
56
55
 
@@ -1,5 +1,5 @@
1
1
  """Project class for managing Orgo projects"""
2
- import os
2
+ import os as operating_system # Renamed to avoid any potential conflicts
3
3
  import uuid
4
4
  from typing import Dict, List, Any, Optional
5
5
 
@@ -18,7 +18,7 @@ class Project:
18
18
  api_key: Orgo API key (defaults to ORGO_API_KEY env var)
19
19
  base_api_url: Custom API URL (optional)
20
20
  """
21
- self.api_key = api_key or os.environ.get("ORGO_API_KEY")
21
+ self.api_key = api_key or operating_system.environ.get("ORGO_API_KEY")
22
22
  self.base_api_url = base_api_url
23
23
  self.api = ApiClient(self.api_key, self.base_api_url)
24
24
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orgo
3
- Version: 0.0.26
3
+ Version: 0.0.27
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