ZeqCompute
Master-equation solvers. ODE, lattice, shift, verify.
- Protocol ID —
zeq-compute - Category — Compute
- Endpoint —
POST /api/zeq/compute - Auth — api-key
- Rate limit — 60/min + daily plan limit
- Version —
1.0 - Precision — ≤0.1% (KO42-enforced)
What it does
Core computation — select domain, resolve operators, compute R(t), build master equation, return ZeqState with ZeqProof HMAC. Supports algebraic, ODE, and strict modes.
Signature
Request
POST /api/zeq/compute
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
domain | string | — | Domain name or prefix (e.g. 'quantum mechanics', 'QM'). | |
operators | array | — | Operator IDs (max 10). If omitted, intent-aware selection picks 4. | |
inputs | object | — | Named numeric inputs. | |
mode | string | — | 'algebraic' (default), 'ode' (RK4 solver), or 'strict' (auto-tune β). | |
prompt | string | — | Natural language experiment description (required for ode/strict modes). |
Response
{ zeqState, result, meta, zeqProof }
Runnable example
curl -sS -X POST \
-H "Authorization: Bearer $ZEQ_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"domain": "<value>",
"operators": [],
"inputs": {},
"mode": "<value>",
"prompt": "<value>"
}' \
"https://api.zeq.dev/api/zeq/compute"
Integrate
- Master-equation solve — compose with
KO42always + up to three more operators per the 7-Step Wizard Protocol. - Batch mode — fan out one call per phase tick, aggregate on the Zeqond boundary.
- Verify-on-write — pair with
ZeqProof Verifyto stamp results witherror_pct ≤ 0.1%.
Seeds
- Near — wrap
/api/zeq/computein a language SDK so builders can call it in three lines. - Medium — publish a reference integration demonstrating ZeqCompute alongside a real workload, with pulse-aligned metrics.
- Far — propose ZeqCompute as an open reference standard so other runtimes can implement it verbatim against the Zeq paper.
Papers
- Zeq paper — https://doi.org/10.5281/zenodo.18158152
- Framework paper — https://doi.org/10.5281/zenodo.15825138
Middleware active. Kernel on the 1.287 Hz HulyaPulse. Awaiting next Zeqond.