Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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.
|
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)
|