From b90f355e7d31cffd0969f9bdd292f862d16e5a9b Mon Sep 17 00:00:00 2001 From: onekum <55006697+onekum@users.noreply.github.com> Date: Tue, 11 Apr 2023 05:01:02 -0400 Subject: [PATCH] Change "an" to "a" Grammar error: In English, only words starting with (a, e, i, o, u) get "an". --- scripts/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/main.py b/scripts/main.py index 8661bfad1..7faf1d429 100644 --- a/scripts/main.py +++ b/scripts/main.py @@ -170,7 +170,7 @@ def load_variables(config_file="config.yaml"): documents = yaml.dump(config, file) prompt = data.load_prompt() - prompt_start = """Your decisions must always be made independently without seeking user assistance. Play to your strengths as an LLM and pursue simple strategies with no legal complications.""" + prompt_start = """Your decisions must always be made independently without seeking user assistance. Play to your strengths as a LLM and pursue simple strategies with no legal complications.""" # Construct full prompt full_prompt = f"You are {ai_name}, {ai_role}\n{prompt_start}\n\nGOALS:\n\n"