From 2628339ab06c35d5b687d039a94f76a46c25c7fc Mon Sep 17 00:00:00 2001 From: Chenhao Xu Date: Fri, 17 Oct 2025 13:49:32 +0800 Subject: [PATCH] Align parameter names for the `generate_with_context` function --- openevolve/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openevolve/database.py b/openevolve/database.py index a1f793cc..1c7f7393 100644 --- a/openevolve/database.py +++ b/openevolve/database.py @@ -985,7 +985,7 @@ def _llm_judge_novelty(self, program: Program, similar_program: Program) -> bool try: content: str = asyncio.run( self.novelty_llm.generate_with_context( - system_msg=NOVELTY_SYSTEM_MSG, + system_message=NOVELTY_SYSTEM_MSG, messages=[{"role": "user", "content": user_msg}], ) )