File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -43,9 +43,7 @@ class LLMConfig(LLMModelConfig):
4343 name : str = "gpt-4o"
4444
4545 # Generation parameters
46- system_message : Optional [str ] = (
47- "You are an expert coder helping to improve programs through evolution."
48- )
46+ system_message : Optional [str ] = "system_message"
4947 temperature : float = 0.7
5048 top_p : float = 0.95
5149 max_tokens : int = 4096
@@ -116,8 +114,8 @@ class PromptConfig:
116114 """Configuration for prompt generation"""
117115
118116 template_dir : Optional [str ] = None
119- system_message : str = "You are an expert coder helping to improve programs through evolution. "
120- evaluator_system_message : str = """You are an expert code reviewer."" "
117+ system_message : str = "system_message "
118+ evaluator_system_message : str = "evaluator_system_message "
121119
122120 # Number of examples to include in the prompt
123121 num_top_programs : int = 3
You can’t perform that action at this time.
0 commit comments