Skip to main content

Omytea Quantum Substrate

PyPI Python License CI

Quantum-information substrate for the Omytea world-model system. Stdlib + NumPy only — no SciPy, no Torch, no JAX, no GPU. Apache 2.0.

pip install omytea-quantum-substrate
from omytea import (
    StateHypothesis, WaveFunction, JointWaveFunction,
    OffDiagonalEntry, DensityMatrix, Position,
)
from omytea.dynamics import LindbladOperator, OperatorContext

What this is

The math core of an open-system probabilistic world model:

  • WaveFunction — per-entity sparse branch grid (diagonal of ρ_i)
  • JointWaveFunction — entity-tuple sparse branch grid (diagonal of ρ_{AB})
  • OffDiagonalEntry — sparse off-diagonal of ρ_{AB} (classical correlation between joint hypotheses)
  • DensityMatrix — open-system primary representation
  • LindbladOperator — Gorini-Kossakowski-Sudarshan-Lindblad master-equation operator for monotonic decoherence of off-diagonal coherence

Honest framing: this is quantum-information formalism applied to classical inference. We use ρ and Lindblad as a unified bookkeeping for joint distributions + their correlations + dissipation — not because the underlying system is literally quantum. The off-diagonal magnitudes carry classical-correlation information, not amplitudes of a true quantum state.

What this is for

Building world models that:

  1. Express uncertainty over multiple entities jointly (not just per-entity priors)
  2. Model how correlations between predicted entity futures decohere as horizon extends
  3. Stay calibratable via measurement updates (Brier / log-loss / reliability diagrams)
  4. Run on consumer hardware — no GPU, no NumPy, no compiled extensions

The substrate is deliberately small (~2,400 lines, 6 modules) and depends only on Python's standard library + NumPy. Plug it under your perception layer and your decision UI.

Quick example

from datetime import datetime, timezone
from omytea import (
    StateHypothesis, WaveFunction, JointWaveFunction,
    JointBranchHypothesis, OffDiagonalEntry, Position,
)
from omytea.dynamics import LindbladOperator, OperatorContext

now = datetime.now(tz=timezone.utc)

# 1. Build per-entity WaveFunctions (each has 3 future-position hypotheses)
def make_wf(entity_id: str, label: str) -> WaveFunction:
    hyps = tuple(
        StateHypothesis(
            object_id=entity_id, label=name, stream_id="demo",
            timestamp=now, position=Position(x=cx, y=0.5, space="image_norm"),
            weight=w, branch_label=name,
        )
        for name, cx, w in [
            ("continue",    0.6, 0.55),
            ("accelerate",  0.9, 0.25),
            ("decelerate",  0.3, 0.20),
        ]
    )
    return WaveFunction(
        object_id=entity_id, label=label, stream_id="demo",
        timestamp=now, hypotheses=hyps, action_arm=None,
    )

wf_a = make_wf("A", "left_to_right")
wf_b = make_wf("B", "right_to_left")

# 2. Build JointWaveFunction (Cartesian product, 3×3 = 9 joint hypotheses)
joint_hyps = []
for h_a in wf_a.hypotheses:
    for h_b in wf_b.hypotheses:
        joint_hyps.append(JointBranchHypothesis(
            branch_refs={"A": h_a.hypothesis_id, "B": h_b.hypothesis_id},
            weight=h_a.weight * h_b.weight,
        ))

# 3. Add a correlation: matching-continue pairs have +0.1 off-diagonal coherence
offdiags = []
for i, hi in enumerate(joint_hyps):
    for j, hj in enumerate(joint_hyps):
        if i >= j: continue
        # ... pair (continue, continue) vs (continue, continue) — same hypothesis pairs (skip)
        # ... or actual pair logic per your model
        pass

jwf = JointWaveFunction(
    entity_ids=("A", "B"),
    hypotheses=tuple(joint_hyps),
    off_diagonal_couplings=tuple(offdiags),
)

# 4. Evolve under Lindblad at decoherence rate γ = 0.08 for 6 ticks
lindblad = LindbladOperator(decoherence_rate=0.08)
ctx = OperatorContext(scenario_name="demo", tick=0)
current = jwf
for tick in range(6):
    current = lindblad.evolve(current, dt=1.0, ctx=ctx)

# Off-diagonal magnitudes have decayed monotonically.

See examples/basic_usage.py for a runnable version.

What this is not

  • Not a quantum-computing library. No quantum gates, no qubits, no Pauli ops. The names borrow from quantum-information formalism; the implementation is classical.
  • Not a perception or vision library. Substrate consumes detection bounding boxes; it doesn't produce them.
  • Not a vision-language interface. That's downstream — see the Personal Future Console for an end-to-end product built on this substrate.
  • Not a deep-learning library. No PyTorch / JAX / TensorFlow dep. Substrate runs in CPython 3.11+ with zero compiled extensions.

Companion product

The first end-to-end application built on this substrate:

🚀 Omytea Personal Future Console
Live demo: https://omytea-personal-console.streamlit.app

A Streamlit app that takes natural-language decision queries or short videos, runs the substrate's perception + joint-wavefunction + Lindblad evolution, and produces calibrated probability distributions over short-horizon scene futures.

Cite this work

If you use the substrate in research, please cite it via the CITATION.cff file at the repo root, or:

@software{omytea_quantum_substrate_2026,
  author = {Chen, Jiaxuan},
  title  = {Omytea Quantum Substrate: Open-System World-Model Math Core},
  year   = {2026},
  url    = {https://github.com/Adonyth/omytea-quantum-substrate},
  version = {0.1.0},
}

The companion paper Omytea Video World Console — Quantum-Operator Evolution over Streaming Belief States (draft v0.1) lives in the Personal Future Console repo at docs/papers/OMYTEA_VIDEO_CONSOLE_DRAFT.md.

License

Apache License 2.0. See LICENSE.

Contributing

Issues and pull requests welcome. The substrate is deliberately minimal — additions should preserve the pure-stdlib constraint and the typed-dataclass convention. See the consoles' CONTRIBUTING.md for the broader Omytea project's contribution guidance (same fits/doesn't-fit rules apply).

Versioning

Semantic versioning. v0.x releases may introduce breaking changes between minor versions until the API surface stabilizes. From v1.0, breaking changes will be reserved for major versions.

See CHANGELOG.md for release notes.

Release files for omytea-quantum-substrate 0.1.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for omytea-quantum-substrate 0.1.2
File Size Uploaded
omytea_quantum_substrate-0.1.2.tar.gz 43.8 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for omytea-quantum-substrate 0.1.2
File Interpreter ABI Platform
omytea_quantum_substrate-0.1.2-py3-none-any.whl Python 3 none any Details

Total release size: 88.1 kB

Release files / omytea_quantum_substrate-0.1.2.tar.gz

Download URL omytea_quantum_substrate-0.1.2.tar.gz
Size 43.8 kB
Tags Source
SHA-256 checksum
How to use checksums
dcb25d0fcd23afe21b00a52eb21bbcf8cb5f82ddea3c0029aa13215efbe4dfb6
BLAKE2b-256 checksum
How to use checksums
a47498974ce38628152e20376ef51a6d5fa8e24b91fa35beb02982c38394c896
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 19, 2026.

Transparency log

Release files / omytea_quantum_substrate-0.1.2-py3-none-any.whl

Download URL omytea_quantum_substrate-0.1.2-py3-none-any.whl
Size 44.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
bd6db119b4b6c3031939d2fb1538dd071d267edbf59ce093a38e6f9e38763004
BLAKE2b-256 checksum
How to use checksums
2cc1c9efa564028225b49555f9370c184998a6c68c43f283ffa62a5a103d3aa8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 19, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.2 This release

2 release files

0.1.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page