Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -132,13 +132,13 @@ def build_demo(TYPES):
|
|
132 |
task_metadata.change(lambda x: x, inputs=[], outputs=[], scroll_to_output=False, js=js_code)
|
133 |
|
134 |
with gr.Row():
|
135 |
-
with gr.Column():
|
136 |
-
gr.Markdown("## 📢 Plan Module Process History
|
137 |
-
Chatbot_Common_Plan = gr.Chatbot(avatar_images=["human_icon.jpeg", "ai_icon.png"], height=
|
138 |
Chatbot_Common_Plan.change(lambda x: x, inputs=[], outputs=[], scroll_to_output=False, js=js_code)
|
139 |
-
with gr.Column():
|
140 |
gr.Markdown("## 📢 Ground Module Process History", elem_classes="markdown-text")
|
141 |
-
Chatbot_Common_Ground = gr.Chatbot(avatar_images=["human_icon.jpeg", "ai_icon.png"], height=
|
142 |
Chatbot_Common_Ground.change(lambda x: x, inputs=[], outputs=[], scroll_to_output=False, js=js_code)
|
143 |
|
144 |
with gr.Row():
|
|
|
132 |
task_metadata.change(lambda x: x, inputs=[], outputs=[], scroll_to_output=False, js=js_code)
|
133 |
|
134 |
with gr.Row():
|
135 |
+
with gr.Column(scale=1.1):
|
136 |
+
gr.Markdown("## 📢 Plan Module Process History w/ <span style='background-color: #FDFDBA;'>Execution Module Results</span>", elem_classes="markdown-text")
|
137 |
+
Chatbot_Common_Plan = gr.Chatbot(avatar_images=["human_icon.jpeg", "ai_icon.png"], height=1000, container=False, label="Common Plan History", likeable=False, show_share_button=False, show_label=True, elem_classes="chat-common", layout="bubble")
|
138 |
Chatbot_Common_Plan.change(lambda x: x, inputs=[], outputs=[], scroll_to_output=False, js=js_code)
|
139 |
+
with gr.Column(scale=1):
|
140 |
gr.Markdown("## 📢 Ground Module Process History", elem_classes="markdown-text")
|
141 |
+
Chatbot_Common_Ground = gr.Chatbot(avatar_images=["human_icon.jpeg", "ai_icon.png"], height=1000, container=False, label="Common Ground History", likeable=False, show_share_button=False, show_label=True, elem_classes="chat-common", layout="bubble")
|
142 |
Chatbot_Common_Ground.change(lambda x: x, inputs=[], outputs=[], scroll_to_output=False, js=js_code)
|
143 |
|
144 |
with gr.Row():
|