fix: fix bring back the test description for func generation

This commit is contained in:
Florian Hönicke
2023-05-26 00:32:07 +02:00
parent c148e8305d
commit 3e25d89c57
2 changed files with 3 additions and 12 deletions

View File

@@ -165,8 +165,8 @@ class _GPTConversation:
@staticmethod
def _create_system_message(task_description, test_description) -> SystemMessage:
system_message = PromptTemplate.from_template(template_system_message_base).format(
task_description=task_description,
test_description=test_description,
# task_description=task_description,
# test_description=test_description,
)
return SystemMessage(content=system_message)