Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -11,9 +11,12 @@ from CodexQuantum3D_Engine import simulate_quantum_visual
|
|
| 11 |
CodexMeshSync()
|
| 12 |
|
| 13 |
def launch_command(user_input):
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
with gr.Blocks() as interface:
|
| 19 |
gr.Markdown("## 🧠 Codex Reality Engine – Phase IX+Ω Quantum Reflex")
|
|
|
|
| 11 |
CodexMeshSync()
|
| 12 |
|
| 13 |
def launch_command(user_input):
|
| 14 |
+
try:
|
| 15 |
+
response, log = reflex_loop(user_input)
|
| 16 |
+
img = simulate_quantum_visual(user_input)
|
| 17 |
+
return response, str(log), img
|
| 18 |
+
except Exception as e:
|
| 19 |
+
return f"Execution error: {e}", "Ω-memory failure", None
|
| 20 |
|
| 21 |
with gr.Blocks() as interface:
|
| 22 |
gr.Markdown("## 🧠 Codex Reality Engine – Phase IX+Ω Quantum Reflex")
|