GitHub Copilot commited on
Commit
0f82cc8
·
1 Parent(s): ad60bb2

UI: Fixed Topology Tab - Replaced 'Gödel-Zeta' with 'Matroska Mod-10 Concentric Spheres'

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -243,10 +243,12 @@ with gr.Blocks(theme=gr.themes.Soft(), css=load_css(), title="LOGOS: SPCW Matros
243
  """)
244
  btn_refresh = gr.Button("⚡ Pulse Network", elem_classes=["primary-btn"])
245
 
246
- # TAB B: RECURSIVE CHAT
247
  with gr.Tab("💬 Recursive Reasoning"):
248
- chatbot = gr.Chatbot(height=500, label="Recursive Manifold Loop", elem_classes=["gr-box"])
249
- msg = gr.Textbox(placeholder="Inject Entropy...", label="Prompt", elem_classes=["neon-input"])
 
 
250
 
251
  def user(user_message, history):
252
  return "", history + [[user_message, None]]
 
243
  """)
244
  btn_refresh = gr.Button("⚡ Pulse Network", elem_classes=["primary-btn"])
245
 
246
+ # TAB B: RECURSIVE REASONING (Agent Interaction)
247
  with gr.Tab("💬 Recursive Reasoning"):
248
+ with gr.Column(elem_classes=["chat-container"]):
249
+ chatbot = gr.Chatbot(label="Router Uplink", elem_classes=["terminal-chat"], type="messages")
250
+ msg = gr.Textbox(label="Prompt", placeholder="Inject signal into Recursive Manifold...", elem_classes=["terminal-input"])
251
+ clear = gr.Button("Clear Context")
252
 
253
  def user(user_message, history):
254
  return "", history + [[user_message, None]]