labgate 0.5.44 → 0.5.46
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.
- package/README.md +2 -0
- package/dist/cli.js +2 -1
- package/dist/cli.js.map +1 -1
- package/dist/lib/config.d.ts +1 -1
- package/dist/lib/config.js +1 -1
- package/dist/lib/config.js.map +1 -1
- package/dist/lib/container.d.ts +10 -1
- package/dist/lib/container.js +204 -10
- package/dist/lib/container.js.map +1 -1
- package/dist/lib/image-pull-lock.d.ts +5 -0
- package/dist/lib/image-pull-lock.js +4 -0
- package/dist/lib/image-pull-lock.js.map +1 -1
- package/dist/lib/init.js +1 -1
- package/dist/mcp-bundles/dataset-mcp.bundle.mjs +1 -1
- package/dist/mcp-bundles/display-mcp.bundle.mjs +1 -1
- package/dist/mcp-bundles/explorer-mcp.bundle.mjs +1 -1
- package/dist/mcp-bundles/results-mcp.bundle.mjs +1 -1
- package/dist/mcp-bundles/slurm-mcp.bundle.mjs +1 -1
- package/package.json +1 -1
|
@@ -7703,7 +7703,7 @@ var init_config = __esm({
|
|
|
7703
7703
|
DEFAULT_CONFIG = {
|
|
7704
7704
|
runtime: "auto",
|
|
7705
7705
|
images_dir: "",
|
|
7706
|
-
// Default sandbox image
|
|
7706
|
+
// Default sandbox image is expected to include python3 + basic build tools (git/make/g++).
|
|
7707
7707
|
// Note: pip/venv are not included by default in Debian; users may still need a
|
|
7708
7708
|
// custom image for richer Python workflows.
|
|
7709
7709
|
image: "docker.io/library/node:20-bookworm",
|
|
@@ -29957,7 +29957,7 @@ import { homedir } from "os";
|
|
|
29957
29957
|
var DEFAULT_CONFIG = {
|
|
29958
29958
|
runtime: "auto",
|
|
29959
29959
|
images_dir: "",
|
|
29960
|
-
// Default sandbox image
|
|
29960
|
+
// Default sandbox image is expected to include python3 + basic build tools (git/make/g++).
|
|
29961
29961
|
// Note: pip/venv are not included by default in Debian; users may still need a
|
|
29962
29962
|
// custom image for richer Python workflows.
|
|
29963
29963
|
image: "docker.io/library/node:20-bookworm",
|
|
@@ -30317,7 +30317,7 @@ import { homedir } from "os";
|
|
|
30317
30317
|
var DEFAULT_CONFIG = {
|
|
30318
30318
|
runtime: "auto",
|
|
30319
30319
|
images_dir: "",
|
|
30320
|
-
// Default sandbox image
|
|
30320
|
+
// Default sandbox image is expected to include python3 + basic build tools (git/make/g++).
|
|
30321
30321
|
// Note: pip/venv are not included by default in Debian; users may still need a
|
|
30322
30322
|
// custom image for richer Python workflows.
|
|
30323
30323
|
image: "docker.io/library/node:20-bookworm",
|