Deterministic conversational state engine for LLM applications.
Project description
Context Compiler
A deterministic directive engine that converts explicit user instructions into structured conversational state for LLM applications.
Modern language models reason well but are unreliable at maintaining consistent state across interactions.
Corrections compete with earlier statements, constraints disappear, and long conversations accumulate contradictions.
The Context Compiler introduces a deterministic state layer that governs authoritative conversational state independently of the model.
The model performs reasoning and generation while the compiler manages facts and constraints. Once accepted, directives remain authoritative until explicitly corrected or reset.
Why “Compiler”?
Context Compiler treats explicit user directives as inputs to a deterministic process.
Instead of relying on the LLM to remember constraints across a conversation, user instructions are compiled into structured state before the model runs.
The idea is similar to a traditional compiler: user directives are translated into a structured representation that the rest of the system can rely on.
Installation
- Python 3.11+
pip install context-compiler- Dev/test:
uv sync --group devanduv run pytest
10-Second Example
User sets a constraint once:
User: don't use peanuts
Outcome: prohibited items now include "peanuts".
Later in the conversation:
User: how should I make this curry?
The host supplies the authoritative state to the model so the constraint persists across turns.
Architecture
User Input
│
▼
Context Compiler
│
▼
Decision
│
▼
Host Application
├─ clarify → ask user
├─ passthrough → call LLM
└─ update → call LLM with compiled state
The compiler governs authoritative conversational state and never calls the LLM.
The host decides whether to call the model based on the returned Decision.
Decision API
Each user message produces a Decision.
class Decision(TypedDict):
kind: Literal["passthrough", "update", "clarify"]
state: dict | None
prompt_to_user: str | None
Meaning:
| kind | host behavior |
|---|---|
| passthrough | forward user input to LLM |
| update | forward input with updated state |
| clarify | show prompt_to_user and do not call the LLM |
Host Integration Example
engine = create_engine()
decision = engine.step(user_input)
if decision["kind"] == "clarify":
show_to_user(decision["prompt_to_user"])
else:
state = decision["state"] or engine.state
messages = build_messages(state, user_input)
render(call_llm(messages))
API Reference
| API | Description |
|---|---|
create_engine(state=None) |
Create a new compiler engine; optional state provides initial authoritative state (validated/canonicalized). |
step(user_input) |
Parse one user turn and return a deterministic Decision. |
compile_transcript(messages) |
Replay a transcript from a fresh engine and return either final state or a confirmation prompt. |
engine.apply_transcript(messages) |
Replay a transcript onto the current engine state and return either final state or a confirmation prompt. |
engine.state |
Read current authoritative in-memory state snapshot. |
get_focus_value(state) |
Read the current focus value from a state snapshot. |
get_prohibited_items(state) |
Read prohibited items from a state snapshot. |
export_json() |
Export current state as JSON for persistence/transport. |
import_json(payload) |
Load/restore state from exported JSON payload. |
State Model
The compiler maintains an authoritative state snapshot. Hosts should treat this state as structured application data and avoid coupling to internal field names or nested layout.
State Access and Persistence
Hosts can provide initial state at engine creation (create_engine(state=...)),
read current in-memory state via engine.state, and persist/restore via
export_json() and import_json(). Semantic state mutations occur through
directives processed by step(). Storage is managed by the host application.
Use the returned state snapshot as structured host input for prompt
construction, policy enforcement, or replay/storage workflows.
For host code that needs typed reads without direct nested key lookups, use
get_focus_value(state) and get_prohibited_items(state).
Transcript Replay
Transcript replay compiles conversational history by reusing the same deterministic directive path:
- Only messages with
role == "user"are processed. - Assistant/system/non-user messages are ignored.
- Replay calls
step()for each user message in order. - Replay stops on the first clarification and returns a confirmation prompt.
compile_transcript(messages)starts from a fresh engine.engine.apply_transcript(messages)applies replay onto the current engine state.
Fact Schema
The current behavior includes one exclusive focus value. This demonstrates deterministic fact replacement and correction behavior. Richer schemas may be introduced in future releases.
State Properties
- Facts are exclusive (last write wins)
- Policies are additive
- No inference or semantic reasoning
Identical input sequences always produce identical compiler state. LLM responses may still vary unless deterministic decoding is used by the host.
Example:
User: use tofu
User: use corn oil
Result:
the current focus value becomes "corn oil"
Because the focus value is exclusive (last write wins), later use ... directives replace earlier values.
This may differ from human expectations, where the intent may be interpreted as additive (e.g., ingredient + cooking medium). The current schema models a single focus value. See issue #45 for discussion.
Directive Examples
Hard negative directive:
User: don't use peanuts
Result:
prohibited items include "peanuts".
Fact configuration:
User: use vegetarian curry
State update:
the current focus value becomes "vegetarian curry"
Correction:
User: actually vegan curry
Result:
the current focus value becomes "vegan curry"
Ambiguous mutation:
User: no use peanuts
Compiler response:
Decision.kind = "clarify"
No state mutation occurs until confirmation.
Reset Commands
Two explicit reset commands are supported:
reset policiesclears prohibited items but preserves the current focus valueclear stateresets the full state to initial values
Example:
- If current focus is
"vegetarian curry"and prohibited items include"peanuts": - after
reset policies, prohibited items are empty and focus remains"vegetarian curry". - after
clear state, both focus and prohibited items return to initial defaults.
Examples
Quickstart
Run the interactive REPL:
context-compiler
Run an example:
python examples/01_persistent_guardrails.py
Run tests:
uv run pytest
Guarantees
- State changes only through explicit user directives or confirmation.
- Identical input sequences produce identical compiler state.
- Model responses never modify compiler state.
- Ambiguous directives trigger clarification instead of changing state.
These invariants are verified through behavioral tests and Hypothesis-based property tests.
Design Notes
More detailed design and milestone documents are available in:
License
Apache-2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file context_compiler-0.4.5.tar.gz.
File metadata
- Download URL: context_compiler-0.4.5.tar.gz
- Upload date:
- Size: 212.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a819a851efdb590cdde989c32a37e2e504496cab468bfc7a41329fd99b644cb0
|
|
| MD5 |
6be18bf08c9e61097efd641fb5f69e47
|
|
| BLAKE2b-256 |
81e4c62152d2ea0366e43428558944bb625fab4925b1ff2ba0f2cdddd10cdf97
|
Provenance
The following attestation bundles were made for context_compiler-0.4.5.tar.gz:
Publisher:
publish-pypi.yml on rlippmann/context-compiler
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
context_compiler-0.4.5.tar.gz -
Subject digest:
a819a851efdb590cdde989c32a37e2e504496cab468bfc7a41329fd99b644cb0 - Sigstore transparency entry: 1154998218
- Sigstore integration time:
-
Permalink:
rlippmann/context-compiler@af76e22d219c97b32fad4e62d2cf86e3c6876fe0 -
Branch / Tag:
refs/tags/v0.4.5 - Owner: https://github.com/rlippmann
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@af76e22d219c97b32fad4e62d2cf86e3c6876fe0 -
Trigger Event:
release
-
Statement type:
File details
Details for the file context_compiler-0.4.5-py3-none-any.whl.
File metadata
- Download URL: context_compiler-0.4.5-py3-none-any.whl
- Upload date:
- Size: 16.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e03d7754aa6e89fdf7f8e651a4b4982e66238736b4d38bfcb9e919d1bf25d83
|
|
| MD5 |
1d850f953b80f210620d8c39e39fa82f
|
|
| BLAKE2b-256 |
c30d3c62f6d2d8531ea6ea0d61b18a34d5720866c8c9733493a211b3f49639a1
|
Provenance
The following attestation bundles were made for context_compiler-0.4.5-py3-none-any.whl:
Publisher:
publish-pypi.yml on rlippmann/context-compiler
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
context_compiler-0.4.5-py3-none-any.whl -
Subject digest:
7e03d7754aa6e89fdf7f8e651a4b4982e66238736b4d38bfcb9e919d1bf25d83 - Sigstore transparency entry: 1154998225
- Sigstore integration time:
-
Permalink:
rlippmann/context-compiler@af76e22d219c97b32fad4e62d2cf86e3c6876fe0 -
Branch / Tag:
refs/tags/v0.4.5 - Owner: https://github.com/rlippmann
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@af76e22d219c97b32fad4e62d2cf86e3c6876fe0 -
Trigger Event:
release
-
Statement type: