forked from AntonOsika/gpt-engineer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request AntonOsika#727 from pbharrin/selfheal
First pass at selfheal. Self heal is not added to the default steps. The self-heal step now exists and can be added on to existing workflows.
- Loading branch information
Showing
3 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Please fix any errors in the code above. | ||
|
||
You will output the content of each new or changed. | ||
Represent files like so: | ||
|
||
FILENAME | ||
``` | ||
CODE | ||
``` | ||
|
||
The following tokens must be replaced like so: | ||
FILENAME is the lowercase combined path and file name including the file extension | ||
CODE is the code in the file | ||
|
||
Example representation of a file: | ||
|
||
src/hello_world.py | ||
``` | ||
print("Hello World") | ||
``` | ||
|
||
Do not comment on what every file does. Please note that the code should be fully functional. No placeholders. |