Remove whitespaces

This commit is contained in:
Andres Caicedo
2023-04-09 16:31:04 +02:00
parent d05146c6c5
commit 9105a9c7f8
2 changed files with 2 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ class AIConfig:
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."""
# Construct full prompt
full_prompt = f"You are {self.ai_name}, {self.ai_role}\n{prompt_start}\n\nGOALS:\n\n"
full_prompt = f"You are {self.ai_name}, {self.ai_role}\n{prompt_start}\n\nGOALS:\n\n"
for i, goal in enumerate(self.ai_goals):
full_prompt += f"{i+1}. {goal}\n"