Spaces:
Running
Running
COPY szl_formula_wiring.py into a11oy image (per-file)
Browse filesSigned-off-by: Stephen P. Lutar Jr. <stephenlutar2@gmail.com>
Co-Authored-By: Perplexity Computer Agent <agent@perplexity.ai>
- Dockerfile +9 -0
Dockerfile
CHANGED
|
@@ -285,6 +285,15 @@ COPY szl_ayni_quorum.py ./szl_ayni_quorum.py
|
|
| 285 |
# Governed agent loop module (RAG->tool-call->policy/trust->signed-receipt + canonical /mcp/).
|
| 286 |
COPY szl_agentic_loop.py ./szl_agentic_loop.py
|
| 287 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 288 |
# a11oy Code engine (governed chat/code/research; C20/W7-5 router; W5-3/W7-4 conformal;
|
| 289 |
# C10-C12 consensus; REAL restricted-subprocess sandbox). Per-file COPY (this Dockerfile
|
| 290 |
# never uses `COPY . .`) -- without this `import a11oy_code_engine` fails at boot and the
|
|
|
|
| 285 |
# Governed agent loop module (RAG->tool-call->policy/trust->signed-receipt + canonical /mcp/).
|
| 286 |
COPY szl_agentic_loop.py ./szl_agentic_loop.py
|
| 287 |
|
| 288 |
+
# Formula-wiring module (ADDITIVE 2026-06-06): registers the kernel-verified theorem
|
| 289 |
+
# mechanisms as live executable checks + the /api/<ns>/v1/formulas/* endpoints
|
| 290 |
+
# (selftest, proof-summary). BYTE-IDENTICAL across a11oy + killinchu (single source of
|
| 291 |
+
# truth). Per-file COPY (this Dockerfile never uses `COPY . .`) -- without this
|
| 292 |
+
# `import szl_formula_wiring` fails at boot and the formula endpoints 404. Imports
|
| 293 |
+
# stdlib only; no weights, no keys.
|
| 294 |
+
# Signed-off-by: Stephen P. Lutar Jr. <stephenlutar2@gmail.com>
|
| 295 |
+
COPY szl_formula_wiring.py ./szl_formula_wiring.py
|
| 296 |
+
|
| 297 |
# a11oy Code engine (governed chat/code/research; C20/W7-5 router; W5-3/W7-4 conformal;
|
| 298 |
# C10-C12 consensus; REAL restricted-subprocess sandbox). Per-file COPY (this Dockerfile
|
| 299 |
# never uses `COPY . .`) -- without this `import a11oy_code_engine` fails at boot and the
|