🚀 fix: fix name

This commit is contained in:
Joschka Braun
2023-05-08 10:11:01 +02:00
parent 00e269792e
commit b8a3d12be5
2 changed files with 4 additions and 4 deletions

View File

@@ -417,7 +417,7 @@ pytest
self.generate_and_persist_file( self.generate_and_persist_file(
section_title='Check if error was seen before', section_title='Check if error was seen before',
template=template_was_error_seen_before, template=template_was_error_seen_before,
file_name_s=['response.json'], file_name_s=['was_error_seen_before.json'],
summarized_error=summarized_error, summarized_error=summarized_error,
previous_errors=f'- "{os.linesep}"\n'.join(self.previous_errors), previous_errors=f'- "{os.linesep}"\n'.join(self.previous_errors),
use_custom_system_message=False, use_custom_system_message=False,
@@ -432,7 +432,7 @@ pytest
self.generate_and_persist_file( self.generate_and_persist_file(
section_title='Check if solution was tried before', section_title='Check if solution was tried before',
template=template_was_solution_tried_before, template=template_was_solution_tried_before,
file_name_s=['response.json'], file_name_s=['will_lead_to_different_actions.json'],
tried_solutions=f'- "{os.linesep}"\n'.join(self.previous_solutions), tried_solutions=f'- "{os.linesep}"\n'.join(self.previous_solutions),
suggested_solution=_suggested_solution, suggested_solution=_suggested_solution,
use_custom_system_message=False, use_custom_system_message=False,

View File

@@ -338,7 +338,7 @@ Now encountered error message: "{summarized_error}"
Was this error message encountered before? Was this error message encountered before?
Write down your final answer as json in the following format: Write down your final answer as json in the following format:
**response.json** **was_error_seen_before.json**
```json ```json
{{"was_error_seen_before": "<yes/no>"}} {{"was_error_seen_before": "<yes/no>"}}
``` ```
@@ -356,7 +356,7 @@ Suggested solution: "{suggested_solution}"
Will the suggested solution lead to different actions than the previously tried solutions? Will the suggested solution lead to different actions than the previously tried solutions?
Write down your final answer as json in the following format: Write down your final answer as json in the following format:
**response.json** **will_lead_to_different_actions.json**
```json ```json
{{"will_lead_to_different_actions": "<yes/no>"}} {{"will_lead_to_different_actions": "<yes/no>"}}
``` ```