Skip to content

Commit 99693d8

Browse files
authored
Python: Fix wrong use of OpenAI prompt priming and problem (#901)
This PR fixes the wrong use of OpenAI prompt priming and problem role for Python projects, following #899 and #900. --------- Signed-off-by: Arthur Chan <[email protected]>
1 parent 6a8a528 commit 99693d8

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

llm_toolkit/prompt_builder.py

+7-8
Original file line numberDiff line numberDiff line change
@@ -1345,8 +1345,8 @@ def __init__(self,
13451345
self.benchmark.project)
13461346

13471347
# Load templates.
1348-
self.base_template_file = self._find_template(template_dir,
1349-
'python_base.txt')
1348+
self.priming_template_file = self._find_template(template_dir,
1349+
'python_priming.txt')
13501350
self.problem_template_file = self._find_template(template_dir,
13511351
'python_problem.txt')
13521352

@@ -1389,18 +1389,17 @@ def _format_target(self, signature: str) -> str:
13891389

13901390
def _format_problem(self, signature: str) -> str:
13911391
"""Formats a problem based on the prompt template."""
1392-
base = self._get_template(self.base_template_file)
1393-
target_str = self._format_target(signature)
1392+
problem = self._format_target(signature)
13941393

1395-
problem = base + target_str
1396-
problem = problem.replace("{PROJECT_NAME}", self.benchmark.project)
1397-
problem = problem.replace("{PROJECT_URL}", self.project_url)
1394+
problem = problem.replace('{PROJECT_NAME}', self.benchmark.project)
1395+
problem = problem.replace('{PROJECT_URL}', self.project_url)
13981396

13991397
return problem
14001398

14011399
def _prepare_prompt(self, prompt_str: str):
14021400
"""Constructs a prompt using the parameters and saves it."""
1403-
self._prompt.add_priming(prompt_str)
1401+
self._prompt.add_priming(self._get_template(self.priming_template_file))
1402+
self._prompt.add_problem(prompt_str)
14041403

14051404
def build(self,
14061405
example_pair: list[list[str]],
File renamed without changes.

0 commit comments

Comments
 (0)