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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ radius = 5
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)
 
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_area("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)