LordXido commited on
Commit
6006fe0
·
verified ·
1 Parent(s): d8e279d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -11,9 +11,12 @@ from CodexQuantum3D_Engine import simulate_quantum_visual
11
  CodexMeshSync()
12
 
13
  def launch_command(user_input):
14
- response, log = reflex_loop(user_input)
15
- img = simulate_quantum_visual(response)
16
- return response, str(log), img
 
 
 
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")