Spaces:
Sleeping
Sleeping
File size: 574 Bytes
022d045 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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() |