File size: 1,190 Bytes
ba036d0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | """
Dense Evolution - Interactive Dashboard (entrypoint)
------------------------------------------------------------
Two pages sharing one AI vector-healing engine:
- Quantum Simulator (ui_pages/quantum_simulator.py): circuit execution,
VQE/MD telemetry — both routed through the AI shield before rendering.
- Vector Healing (ui_pages/vector_healing.py): interactive sandbox for
the same shield (ia_utils.vector_healing.enhanced_dense_healing_hybrid).
Run with:
pip install streamlit
streamlit run app_dashboard.py
"""
import dense_evolution
import streamlit as st
from ui_pages import quantum_simulator, vector_healing, quantum_scars
st.set_page_config(
page_title=f"Dense Evolution v{dense_evolution.__version__} - Dashboard",
page_icon="🧬",
layout="wide",
)
pg = st.navigation([
st.Page(quantum_simulator.render, title="Quantum Simulator", icon="⚛️", url_path="quantum-simulator", default=True),
st.Page(vector_healing.render, title="Vector Healing", icon="🧬", url_path="vector-healing"),
st.Page(quantum_scars.render, title="Quantum Scars", icon="🌀", url_path="quantum-scars"),
])
pg.run()
|