QiNet / app.py
TheGreatUnknown's picture
Create app.py
022d045 verified
raw
history blame contribute delete
574 Bytes
import gradio as gr
from LLML_GlyphEngine import execute_glyph_chain
def run_symbolic_simulation(glyph_chain):
result = execute_glyph_chain(glyph_chain)
return result
iface = gr.Interface(
fn=run_symbolic_simulation,
inputs=gr.Textbox(label="Enter Glyph Sequence", placeholder="e.g. ∑ → ∞ : √(Ω ⊕ ε₀) → Δ$"),
outputs=gr.Textbox(label="Resulting Symbolic Output"),
title="🧠 Qi Glyph Engine",
description="Run symbolic morphic recursion on classical hardware via glyph chains."
)
if __name__ == "__main__":
iface.launch()