Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -363,7 +363,6 @@ def run_agent_wrapper(query: str):
|
|
363 |
chatbot_history = [{"role": "assistant", "content": current_log_message}]
|
364 |
yield (chatbot_history, final_answer)
|
365 |
|
366 |
-
# --- END OF REPLACEMENT ---
|
367 |
|
368 |
# --- Build Gradio Interface Manually with gr.Blocks ---
|
369 |
print("--- Building Gradio Interface with gr.Blocks ---")
|
@@ -391,7 +390,6 @@ with gr.Blocks(css="footer {visibility: hidden}") as demo:
|
|
391 |
label="Reasoning Log",
|
392 |
height=500,
|
393 |
type="messages" # <<< ADD THIS
|
394 |
-
`)
|
395 |
)
|
396 |
|
397 |
|
|
|
363 |
chatbot_history = [{"role": "assistant", "content": current_log_message}]
|
364 |
yield (chatbot_history, final_answer)
|
365 |
|
|
|
366 |
|
367 |
# --- Build Gradio Interface Manually with gr.Blocks ---
|
368 |
print("--- Building Gradio Interface with gr.Blocks ---")
|
|
|
390 |
label="Reasoning Log",
|
391 |
height=500,
|
392 |
type="messages" # <<< ADD THIS
|
|
|
393 |
)
|
394 |
|
395 |
|