Spaces:
Runtime error
Runtime error
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
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
|
| 247 |
with gr.Tab("💬 Recursive Reasoning"):
|
| 248 |
-
|
| 249 |
-
|
|
|
|
|
|
|
| 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]]
|