acecalisto3 commited on
Commit
c4580a1
·
verified ·
1 Parent(s): ff62024

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -246,8 +246,7 @@ st.subheader("Collaborative Agent Example")
246
  collab_agents = st.multiselect("Select AI agents for collaboration", list(agents.keys()), key="collab_agent_select")
247
  collab_project = st.text_input("Enter project name for collaboration:")
248
  collab_task = st.text_input("Enter collaborative task:")
249
- if st.button("Run Collaborative Task"):
250
- if st.button("Start Collaborative Task"):
251
  if collab_agents and collab_project and collab_task:
252
  collaborative_agent_example(collab_agents, collab_project, collab_task)
253
  else:
 
246
  collab_agents = st.multiselect("Select AI agents for collaboration", list(agents.keys()), key="collab_agent_select")
247
  collab_project = st.text_input("Enter project name for collaboration:")
248
  collab_task = st.text_input("Enter collaborative task:")
249
+ if st.button("Run Collaborative Task"):
 
250
  if collab_agents and collab_project and collab_task:
251
  collaborative_agent_example(collab_agents, collab_project, collab_task)
252
  else: