eaglelandsonce commited on
Commit
8c4fb17
·
verified ·
1 Parent(s): b1ec1ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -12,6 +12,9 @@ radius = 5
12
  # Create two columns in the Streamlit app
13
  left_column, right_column = st.columns(2)
14
 
 
 
 
15
  # In the left column, allow the user to input the number of dots, agent names, tasks, and backstories
16
  num_dots = left_column.number_input('Number of dots', min_value=1, max_value=10, value=5)
17
 
 
12
  # Create two columns in the Streamlit app
13
  left_column, right_column = st.columns(2)
14
 
15
+ # In the left column, allow the user to input a common goal for all agents
16
+ common_goal = left_column.text_input("Common Goal for the Agents", "Enter a goal")
17
+
18
  # In the left column, allow the user to input the number of dots, agent names, tasks, and backstories
19
  num_dots = left_column.number_input('Number of dots', min_value=1, max_value=10, value=5)
20