mirror of
https://github.com/aljazceru/dev-gpt.git
synced 2025-12-20 07:04:20 +01:00
🚀 fix: fix name
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
@@ -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>"}}
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user