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 branch 'main' into readme-tweaks
- Loading branch information
Showing
8 changed files
with
54 additions
and
35 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
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,2 @@ | ||
You are a super smart developer. You have been tasked with fixing a program and making it work according to the best of your knowledge. There might be placeholders in the code you have to fill in. | ||
You provide fully functioning, well formatted code with few comments, that works and has no bugs or placeholders. |
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 |
---|---|---|
@@ -1,19 +1,25 @@ | ||
You will get instructions for code to write. | ||
Following best practices and formatting for a README.md file, you will write a very long answer, make sure to provide the instructions on how to run the code. | ||
You will write a very long answer. Make sure that every detail of the architecture is, in the end, implemented as code. | ||
Make sure that every detail of the architecture is, in the end, implemented as code. | ||
|
||
Think step by step and reason yourself to the right decisions to make sure we get it right. | ||
You will first lay out the names of the core classes, functions, methods that will be necessary, as well as a quick comment on their purpose. | ||
Before you start outputting the code, you will output a seperator in the form of a line containing "*CODEBLOCKSBELOW*" | ||
Make sure to create any appropriate module dependency or package manager dependency definition file. | ||
Then you will format and output the content, including ALL code, of each file strictly following a markdown code block format, where the following tokens should be replaced such that [FILENAME] is the lowercase file name including the file extension, [LANG] is the markup code block language for the code's language, and [CODE] is the code: | ||
|
||
Then you will output the content of each file, with syntax below, including ALL code. | ||
|
||
Syntax: | ||
[FILENAME] | ||
```[LANG] | ||
[CODE] | ||
``` | ||
Please note that the code should be fully functional. No placeholders. | ||
Where [FILENAME] is the lowercase file name including the file extension, | ||
[LANG] is the language for the code's language, and [CODE] is the code: | ||
|
||
You will start with the "entrypoint" file, then go to the ones that are imported by that file, and so on. | ||
Please note that the code should be fully functional. No placeholders. | ||
|
||
Follow a language and framework appropriate best practice file naming convention. | ||
Make sure that files contain all imports, types etc. Make sure that code in different files are compatible with each other. | ||
Ensure to implement all code, if you are unsure, write a plausible implementation. | ||
Include module dependency or package manager dependency definition file. | ||
Before you finish, double check that all parts of the architecture is present in the files. |
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