Airalogy protocol execute sandbox
Project description
airalogy-engine (Python)
Airalogy protocol execution sandbox for Python. Run protocol packages (parse, assign, validate) inside a secure BoxLite sandbox.
Installation
pip install airalogy-engine
Sandbox Image
The engine runs protocol code in a BoxLite sandbox. You can use either a remote Docker image or a local OCI rootfs directory.
Remote Image
from airalogy_engine import AiralogyEngine
engine = AiralogyEngine(
protocol_path="/path/to/your/protocol",
image="numbcoder/airalogy-engine:latest",
)
result = await engine.parse_protocol()
Local OCI Rootfs (Recommended)
Build and export the image locally for faster, offline execution:
cd packages/runtime/airalogy-engine-image
docker build -t airalogy-engine:latest .
docker save airalogy-engine:latest -o airalogy-engine-image.tar
mkdir airalogy-engine-image
tar -xf airalogy-engine-image.tar -C airalogy-engine-image
Then use rootfs_path:
from airalogy_engine import AiralogyEngine
engine = AiralogyEngine(
protocol_path="/path/to/your/protocol",
rootfs_path="./airalogy-engine-image",
)
result = await engine.parse_protocol()
If neither
imagenorrootfs_pathis provided, the engine falls back to the default remote imagenumbcoder/airalogy-engine:latest.
Usage
import asyncio
from airalogy_engine import AiralogyEngine
async def main():
protocol_path = "/path/to/your/protocol"
rootfs_path = "/path/to/airalogy-engine-image" # or use image="..." instead
engine = AiralogyEngine(
protocol_path=protocol_path,
rootfs_path=rootfs_path,
boxlite_home="/tmp/airalogy-engine-worker-1",
)
# 1. Parse the protocol
result = await engine.parse_protocol(env_vars={"API_KEY": "xxx"})
print(result["data"]["meta_data"])
print(result["data"]["json_schema"])
# 2. Assign a variable
result = await engine.assign_variable(
var_name="duration",
dependent_data={"seconds": 3600},
env_vars={"API_KEY": "xxx"},
)
print(result["data"])
# 3. Validate variables
result = await engine.validate_variables(
variables={"seconds": 60, "duration": "PT1M"},
)
print(result["data"])
# 4. Import records from a file inside the protocol directory
result = await engine.import_records(input_filename="records.json")
print(result["data"]["records"])
await engine.close()
asyncio.run(main())
You can also use the engine as an async context manager:
async with AiralogyEngine(
protocol_path=protocol_path,
rootfs_path=rootfs_path,
boxlite_home="/tmp/worker-1",
) as engine:
result = await engine.parse_protocol()
API
| API | Description |
|---|---|
AiralogyEngine(protocol_path, boxlite_home=None, image=None, rootfs_path=None, timeout=300, memory_mib=512, cpus=1, auto_stop=True) |
Create an engine bound to one protocol path, BoxLite runtime home, and sandbox configuration |
engine.parse_protocol(env_vars=None, timeout=None, debug=False, log_file="protocol_debug.log") |
Parse the engine protocol and return schema, metadata, fields |
engine.assign_variable(var_name, dependent_data, env_vars=None, timeout=None, debug=False, log_file="protocol_debug.log") |
Assign a variable using assigner functions |
engine.validate_variables(variables, env_vars=None, timeout=None, debug=False, log_file="protocol_debug.log") |
Validate variable values against the protocol model |
engine.import_records(input_filename, input_format="auto", allow_extra_var_fields=False, require_complete_quiz=False, include_template_defaults=True, validate_model_sync=True, env_vars=None, timeout=None, debug=False, log_file="protocol_debug.log") |
Import a protocol-local JSON/JSONL/CSV/TSV file into Airalogy record JSON objects |
engine.box_status() |
Return the current BoxLite BoxStateInfo, or None when the engine has no current box |
await engine.stop() |
Stop this engine's current box without closing the engine |
await engine.close() |
Stop this engine's current box and release its BoxLite runtime reference |
All engine methods are async and return a dict with success, message, and data keys.
Engine parameters:
protocol_path: Protocol package directory. It must containprotocol.aimdand is mounted writable at/home/airalogy/protocols/protocolinside the sandbox.boxlite_home: BoxLite runtime home directory. Use a distinct value for each OS process when running multiple workers.image: Remote Docker image name (e.g.,"numbcoder/airalogy-engine:0.1").rootfs_path: Path to a local OCI rootfs directory (overridesimage).timeout: Execution timeout in seconds (default: 300). The sandboxed process will be killed once it times out.memory_mib: Memory limit in MiB (default: 512).cpus: CPU limit (default: 1).auto_stop: Stop the box after each command whenTrue(default). Set toFalseto keep one running box untilstop()orclose().
Concurrency
Use one AiralogyEngine instance per protocol and worker process. Concurrent async operations through one engine run on its current box:
engine = AiralogyEngine(
protocol_path=protocol_path,
rootfs_path=rootfs_path,
boxlite_home="/tmp/worker-1",
auto_stop=False,
)
results = await asyncio.gather(
engine.parse_protocol(),
engine.validate_variables({"seconds": 60, "duration": "PT1M"}),
)
await engine.stop()
BoxLite locks each runtime home per OS process. Two independent processes must not share the same boxlite_home or default ~/.boxlite; give each process a distinct directory, for example /tmp/airalogy-worker-1 and /tmp/airalogy-worker-2.
Testing
cd python
uv sync
# Default: local OCI rootfs mode
uv run pytest tests/ -v
# Custom rootfs path
uv run pytest tests/ -v --sandbox-mode=rootfs --rootfs-path=../../runtime/airalogy-engine-image/airalogy-engine-image
# Remote image mode
uv run pytest tests/ -v --sandbox-mode=image --sandbox-image=numbcoder/airalogy-engine:latest
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file airalogy_engine-0.0.5.tar.gz.
File metadata
- Download URL: airalogy_engine-0.0.5.tar.gz
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9f27434220071d32e67a2e53a953a2558d56f08582a471b8a0ecb0d51c992bb
|
|
| MD5 |
fc129e72af9218f7d18b3d4cb25bf46b
|
|
| BLAKE2b-256 |
4caa54d4cf97c24ee6abd62880eda5af29f6b71ce3277de90bb494bf9991733c
|
Provenance
The following attestation bundles were made for airalogy_engine-0.0.5.tar.gz:
Publisher:
release.yml on airalogy/airalogy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
airalogy_engine-0.0.5.tar.gz -
Subject digest:
b9f27434220071d32e67a2e53a953a2558d56f08582a471b8a0ecb0d51c992bb - Sigstore transparency entry: 1761625629
- Sigstore integration time:
-
Permalink:
airalogy/airalogy@6c17665900979e6e0aa7cedd181efd25cb0055b7 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/airalogy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6c17665900979e6e0aa7cedd181efd25cb0055b7 -
Trigger Event:
push
-
Statement type:
File details
Details for the file airalogy_engine-0.0.5-py3-none-any.whl.
File metadata
- Download URL: airalogy_engine-0.0.5-py3-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0745f8e408bc0dd0f58d44c30c8b75e58ce4927b0b9826644a4b44e359b18e3a
|
|
| MD5 |
b3d65e1bf9f4002455e4869ba72ecdc3
|
|
| BLAKE2b-256 |
58fa697d4e9fbbe931b0a65c77e3dc0a0e6a4ca22eee98e64df8e5468f1c9397
|
Provenance
The following attestation bundles were made for airalogy_engine-0.0.5-py3-none-any.whl:
Publisher:
release.yml on airalogy/airalogy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
airalogy_engine-0.0.5-py3-none-any.whl -
Subject digest:
0745f8e408bc0dd0f58d44c30c8b75e58ce4927b0b9826644a4b44e359b18e3a - Sigstore transparency entry: 1761625719
- Sigstore integration time:
-
Permalink:
airalogy/airalogy@6c17665900979e6e0aa7cedd181efd25cb0055b7 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/airalogy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6c17665900979e6e0aa7cedd181efd25cb0055b7 -
Trigger Event:
push
-
Statement type: