Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -424,13 +424,4 @@ elif app_mode == "Workspace Chat App":
|
|
424 |
st.subheader("Automate Build Process")
|
425 |
if st.button("Automate"):
|
426 |
agent = AIAgent(selected_agent, "", []) # Load the agent without skills for now
|
427 |
-
summary, next_step = agent.autonomous_build(st.session_state.chat_history
|
428 |
-
st.session_state.workspace_projects)
|
429 |
-
st.write("Autonomous Build Summary:")
|
430 |
-
st.write(summary)
|
431 |
-
st.write("Next Step:")
|
432 |
-
st.write(next_step)
|
433 |
-
|
434 |
-
# Display current state for debugging
|
435 |
-
st.sidebar.subheader("Current State")
|
436 |
-
st.sidebar.json(st.session_state.current_state)
|
|
|
424 |
st.subheader("Automate Build Process")
|
425 |
if st.button("Automate"):
|
426 |
agent = AIAgent(selected_agent, "", []) # Load the agent without skills for now
|
427 |
+
summary, next_step = agent.autonomous_build(st.session_state.chat_history
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|