From 6445a826eac7c985f02767a0f470da0f6f886c79 Mon Sep 17 00:00:00 2001 From: Morten Punnerud-Engelstad Date: Wed, 12 Aug 2026 23:00:46 +0200 Subject: [PATCH] Release 0.9.0: the calculus domain, extended physics, and mpeqs 0.4.0 The battery gains calculus -- chain-rule derivatives at a point, exact definite integrals, tangent slopes, quadratics built from their roots -- graded by mpeqs.calculus, whose two independent derivative paths must agree before any model is graded. Physics gains free fall, acceleration and kinetic energy with the formula always stated. Measured live against qwen3: 19/22 (86%). The grader itself was fixed twice by the first live run: an answer must never fail for exceeding the grader's precision, and a question that wants decimals must ask for them. mpeqs floor rises to 0.4.0, which brings the calculus module and the PySpell autograd interpreter. --- pyproject.toml | 2 +- src/mpe_lkg/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6e23929..4582e3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "mpe-lkg" -version = "0.8.2" +version = "0.9.0" description = "Local Knowledge Graph: a local LLM reasons step by step, and the graph writes, steers and checks the answer." readme = "README.md" requires-python = ">=3.10" diff --git a/src/mpe_lkg/__init__.py b/src/mpe_lkg/__init__.py index 449f562..2487a48 100644 --- a/src/mpe_lkg/__init__.py +++ b/src/mpe_lkg/__init__.py @@ -11,7 +11,7 @@ from __future__ import annotations -__version__ = "0.8.2" +__version__ = "0.9.0" __all__ = ["__version__", "create_app", "main", "health"]