Merge pull request #306 from Torantulino/input-file

Input file
pull/234/head
Toran Bruce Richards 2023-04-06 11:59:43 +01:00 committed by GitHub
commit 4c66758827
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 3 deletions

4
.gitignore vendored
View File

@ -7,5 +7,5 @@ package-lock.json
auto_gpt_workspace/*
*.mpeg
.env
last_run_ai_settings.yaml
outputs/*
outputs/*
ai_settings.yaml

7
ai_settings.yaml Normal file
View File

@ -0,0 +1,7 @@
ai_goals:
- Increase net worth.
- Develop and manage multiple businesses autonomously.
- Play to your strengths as a Large Language Model.
ai_name: Entrepreneur-GPT
ai_role: an AI designed to autonomously develop and run businesses with the sole goal
of increasing your net worth.

View File

@ -9,7 +9,7 @@ class AIConfig:
self.ai_goals = ai_goals
# Soon this will go in a folder where it remembers more stuff about the run(s)
SAVE_FILE = "last_run_ai_settings.yaml"
SAVE_FILE = "../ai_settings.yaml"
@classmethod
def load(cls, config_file=SAVE_FILE):