MetaWabbit commited on
Commit
462f2d4
1 Parent(s): ba2ab69

Update autogpt/setup.py

Browse files
Files changed (1) hide show
  1. autogpt/setup.py +3 -3
autogpt/setup.py CHANGED
@@ -53,16 +53,16 @@ def prompt_user() -> AIConfig:
53
  ai_role = "an AI designed to autonomously develop and run businesses with the"
54
  " sole goal of increasing your net worth."
55
 
56
- # Enter up to 5 goals for the AI
57
  logger.typewriter_log(
58
- "Enter up to 5 goals for your AI: ",
59
  Fore.GREEN,
60
  "For example: \nIncrease net worth, Grow Twitter Account, Develop and manage"
61
  " multiple businesses autonomously'",
62
  )
63
  print("Enter nothing to load defaults, enter nothing when finished.", flush=True)
64
  ai_goals = []
65
- for i in range(5):
66
  ai_goal = utils.clean_input(f"{Fore.LIGHTBLUE_EX}Goal{Style.RESET_ALL} {i+1}: ")
67
  if ai_goal == "":
68
  break
 
53
  ai_role = "an AI designed to autonomously develop and run businesses with the"
54
  " sole goal of increasing your net worth."
55
 
56
+ # Enter up to 13 goals for the AI
57
  logger.typewriter_log(
58
+ "Enter up to 13 goals for your AI: ",
59
  Fore.GREEN,
60
  "For example: \nIncrease net worth, Grow Twitter Account, Develop and manage"
61
  " multiple businesses autonomously'",
62
  )
63
  print("Enter nothing to load defaults, enter nothing when finished.", flush=True)
64
  ai_goals = []
65
+ for i in range(13):
66
  ai_goal = utils.clean_input(f"{Fore.LIGHTBLUE_EX}Goal{Style.RESET_ALL} {i+1}: ")
67
  if ai_goal == "":
68
  break