№ 01fol. 1 / 12
Statistics
- stats.median
- stats.quantile
- regression.ols_multiple
The compute plane
SQAI's compute plane is a library of compiled kernels: statistics to option pricing to LLM infrastructure, every function typed in the 4,778-capability contract. An agent names a function. The engine returns the number — warm, in under a millisecond.
IIThe specimen book
Read the library like a type specimen: each family a page, each function a face. Every name on these pages is real — typed in the contract, checked before it runs, hashed after.
№ 01fol. 1 / 12
№ 02fol. 2 / 12
№ 03fol. 3 / 12
№ 04fol. 4 / 12
№ 05fol. 5 / 12
№ 06fol. 6 / 12
№ 07fol. 7 / 12
№ 08fol. 8 / 12
№ 09fol. 9 / 12
№ 10fol. 10 / 12
№ 11fol. 11 / 12
№ 12fol. 12 / 12
The type case — applied packs
actuarial → viticulture
IIIThe presswork
Behind every family: hand-optimized kernels, compiled ahead of time. Determinism costs nothing here — float64, single thread, and still faster than interpreted baselines by orders of magnitude.
91.86×median speedup vs interpreted baselines
0mismatches across 2,744 correctness checks
The accuracy A/B: the same model answers 16 quantitative questions. Computing alone, it scores 0/16. With the engine doing the computing, 16/16.
download · verify · pin — then it's just arithmetic
VThe measured run
One real computation, end to end. The same call returns the same value and the same hash in TypeScript and Python — and the runtime that executes it can be built down to exactly the modules you ship.
measured run — finance.npv
finance.npv(0.1, [-1000, 300, 420, 560, 680])505.020148896933identical in TypeScript and Python0.83 mswarmb74f67d0d7a594aa7ac91f6291612452aa8ccdf603351ebc8d801a6fddd91bc8A number you can replay, not just read.
One environment variable decides what the build service compiles.
Agents don't guess the surface — they search it, locally.
VIQuestions
The first computation provisions the pinned runtime — about 110 seconds, once. After that, measured warm latency is 0.83–0.93 ms per computation, and the query plane answers in under a millisecond.
Yes. Set SQAI_RUNTIME_MODULES and the runtime is built to that filter on provision. Bundles are keyed by the filter's hash, so the same filter reproduces the same bundle.
By construction. Kernels run in float64 on a single thread, and results are hashed over canonical JSON. finance.npv(0.1, [-1000, 300, 420, 560, 680]) returns 505.020148896933 with the same computation_hash in TypeScript and Python.
It searches. searchCapabilities runs in-process over the contract embedded in the package, and an unknown function name returns unsupported_operation with nearest_matches — never a guess.