axio-tools-docker 0.4.0__tar.gz → 0.5.0__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.
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/PKG-INFO +7 -5
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/README.md +6 -4
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/pyproject.toml +3 -1
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/.github/workflows/publish.yml +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/.github/workflows/tests.yml +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/.gitignore +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/LICENSE +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/Makefile +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/src/axio_tools_docker/__init__.py +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/src/axio_tools_docker/config.py +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/src/axio_tools_docker/handler.py +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/src/axio_tools_docker/manager.py +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/src/axio_tools_docker/plugin.py +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/src/axio_tools_docker/settings.py +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/src/axio_tools_docker/tui/__init__.py +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/src/axio_tools_docker/tui/docker.py +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/tests/test_config.py +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/tests/test_handler.py +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/tests/test_manager.py +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/tests/test_plugin.py +0 -0
- {axio_tools_docker-0.4.0 → axio_tools_docker-0.5.0}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: axio-tools-docker
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: Docker sandbox tools for Axio
|
|
5
5
|
Project-URL: Homepage, https://github.com/axio-agent/axio-tools-docker
|
|
6
6
|
Project-URL: Repository, https://github.com/axio-agent/axio-tools-docker
|
|
@@ -45,8 +45,9 @@ pip install axio-tools-docker
|
|
|
45
45
|
|
|
46
46
|
## Usage
|
|
47
47
|
|
|
48
|
+
<!-- name: test_readme_usage; mark: skip -->
|
|
48
49
|
```python
|
|
49
|
-
from axio import Agent
|
|
50
|
+
from axio.agent import Agent
|
|
50
51
|
from axio.context import MemoryContextStore
|
|
51
52
|
from axio_transport_openai import OpenAITransport
|
|
52
53
|
from axio_tools_docker.plugin import DockerPlugin
|
|
@@ -82,14 +83,15 @@ async def main() -> None:
|
|
|
82
83
|
|
|
83
84
|
## Configuration
|
|
84
85
|
|
|
86
|
+
<!-- name: test_readme_config -->
|
|
85
87
|
```python
|
|
86
88
|
from axio_tools_docker.config import SandboxConfig
|
|
87
89
|
|
|
88
90
|
config = SandboxConfig(
|
|
89
91
|
image="python:3.12-slim",
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
92
|
+
memory="512m",
|
|
93
|
+
cpus="1.0",
|
|
94
|
+
workdir="/workspace",
|
|
93
95
|
)
|
|
94
96
|
```
|
|
95
97
|
|
|
@@ -32,8 +32,9 @@ pip install axio-tools-docker
|
|
|
32
32
|
|
|
33
33
|
## Usage
|
|
34
34
|
|
|
35
|
+
<!-- name: test_readme_usage; mark: skip -->
|
|
35
36
|
```python
|
|
36
|
-
from axio import Agent
|
|
37
|
+
from axio.agent import Agent
|
|
37
38
|
from axio.context import MemoryContextStore
|
|
38
39
|
from axio_transport_openai import OpenAITransport
|
|
39
40
|
from axio_tools_docker.plugin import DockerPlugin
|
|
@@ -69,14 +70,15 @@ async def main() -> None:
|
|
|
69
70
|
|
|
70
71
|
## Configuration
|
|
71
72
|
|
|
73
|
+
<!-- name: test_readme_config -->
|
|
72
74
|
```python
|
|
73
75
|
from axio_tools_docker.config import SandboxConfig
|
|
74
76
|
|
|
75
77
|
config = SandboxConfig(
|
|
76
78
|
image="python:3.12-slim",
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
79
|
+
memory="512m",
|
|
80
|
+
cpus="1.0",
|
|
81
|
+
workdir="/workspace",
|
|
80
82
|
)
|
|
81
83
|
```
|
|
82
84
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "axio-tools-docker"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.5.0"
|
|
4
4
|
description = "Docker sandbox tools for Axio"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.12"
|
|
@@ -24,6 +24,7 @@ packages = ["src/axio_tools_docker"]
|
|
|
24
24
|
|
|
25
25
|
[tool.pytest.ini_options]
|
|
26
26
|
asyncio_mode = "auto"
|
|
27
|
+
testpaths = ["tests", "README.md"]
|
|
27
28
|
|
|
28
29
|
[tool.ruff]
|
|
29
30
|
line-length = 119
|
|
@@ -43,6 +44,7 @@ dev = [
|
|
|
43
44
|
"mypy>=1.14",
|
|
44
45
|
"ruff>=0.9",
|
|
45
46
|
"pytest-cov>=7.1.0",
|
|
47
|
+
"markdown-pytest>=0.6.0",
|
|
46
48
|
"textual>=2.1.0",
|
|
47
49
|
]
|
|
48
50
|
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|