Problem 1
Large Language Models are probabilistic text generators — not calculators.
When applied to within-host malaria modelling, base LLMs cannot reliably solve ODEs, estimate parameters, or produce numerically exact results. They approximate — and approximation is not enough for scientific inference.
Problem 2
You cannot see what an LLM is doing — and you cannot iterate on its work.
A base LLM produces a single monolithic response. There is no intermediate state to inspect, no parameters to adjust, and no way to replay a specific computation step.
Our Approach
A schema-first, tool-augmented runtime for compartmental modelling.
The LLM orchestrates validated tools — ODE solvers and Bayesian engines — instead of guessing answers. Every step is logged, every output is reproducible.
Live Demo
Base model vs. tool-augmented system.
What are the peak infections for a SEIR model with β = 0.3, σ = 0.2, γ = 0.1, N = 1000, I₀ = 10?
Model Builder
Parameters
population1000
beta0.48
sigma0.22
gamma0.18
Loading canvas...
Differential Equations
dS/dt = −beta * S * I / populationdE/dt = beta * S * I / population − sigma * EdI/dt = sigma * E − gamma * IdR/dt = gamma * IBuild your model above and click Simulate