Spaces:
Runtime error
Runtime error
GitHub Copilot
commited on
Commit
·
6fb5f66
1
Parent(s):
0f82cc8
Fix: IndentationError in Recursive Reasoning Tab (Critical Runtime Fix)
Browse files
app.py
CHANGED
|
@@ -245,7 +245,7 @@ with gr.Blocks(theme=gr.themes.Soft(), css=load_css(), title="LOGOS: SPCW Matros
|
|
| 245 |
|
| 246 |
# TAB B: RECURSIVE REASONING (Agent Interaction)
|
| 247 |
with gr.Tab("💬 Recursive Reasoning"):
|
| 248 |
-
|
| 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")
|
|
|
|
| 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")
|