VSAVM

System vision

This page is a theory note. It expands the topic in short chapters and defines terminology without duplicating the formal specification documents.

The diagram has a transparent background and is intended to be read together with the caption and the sections below.

Related wiki pages: VM, event stream, VSA, bounded closure, consistency contract.

Related specs: DS001 Foundations and Architecture.

Overview

VSAVM is an Axiologic Research experiment within the Achilles project. The system exposes an LLM-like interface, yet its core is an executable virtual machine. The outer-loop objective is continuation prediction (today implemented as byte-level and macro-unit continuation per DS011), and it can be conditioned on VM state. Correctness is defined operationally as avoiding contradictions both immediately and within a bounded transitive closure (DS004).

Core concepts

A virtual machine is a state transition engine with explicit memory, instructions, and an execution trace. A consistency contract is a rule that ties output permission to budgeted checks. Bounded closure is the controlled exploration of consequences that turns correctness into a measurable property of search effort rather than a vague promise.

LLM-like interface with VM core

The system presents a conversational interface that mirrors large language models while operating on fundamentally different principles. Where traditional LLMs maintain understanding as latent numerical states, VSAVM constructs and executes explicit programs within a virtual machine. This enables operational correctness guarantees impossible with purely statistical approaches.

Runtime story

At runtime the input is segmented into events, candidate interpretations are executed in the VM, and the question is compiled into query programs through retrieval and program search. The default response path is execution + bounded closure + deterministic rendering of checked claims. Optional continuation (DS011) can be used as a proposal mechanism, but it is always subordinate to the correctness contract and the explicit budget.

Boundary behavior

When budget is insufficient, the system must degrade honestly. It can emit conditional claims that explicitly depend on assumptions, or it can declare indeterminacy. In both cases, the system avoids substituting fluency for verification by making the exploration boundary explicit. The system preserves the consistency contract by strengthening conclusions when possible or falling back to conditional results when contradictions cannot be ruled out within the configured budget.

vision diagram
The system vision: a familiar interface backed by executable state, with an explicit contract that governs emission.

References

Virtual machine (Wikipedia) Symbolic execution (Wikipedia) Consistency (Wikipedia) Non-monotonic logic (SEP)