ai-computer-client 0.3.2__py3-none-any.whl → 0.3.4__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.
ai_computer/__init__.py CHANGED
@@ -1,4 +1,14 @@
1
- from .client import SandboxClient, SandboxResponse, StreamEvent, FileOperationResponse
1
+ from .client import SandboxClient
2
+ from .models import SandboxResponse, StreamEvent, FileOperationResponse
3
+ from .submodules import FileSystemModule, ShellModule, CodeModule
2
4
 
3
- __version__ = "0.3.2"
4
- __all__ = ["SandboxClient", "SandboxResponse", "StreamEvent", "FileOperationResponse"]
5
+ __version__ = "0.3.3"
6
+ __all__ = [
7
+ "SandboxClient",
8
+ "SandboxResponse",
9
+ "StreamEvent",
10
+ "FileOperationResponse",
11
+ "FileSystemModule",
12
+ "ShellModule",
13
+ "CodeModule"
14
+ ]