-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separated default prompt in _gr.js into a separate file
- Loading branch information
1 parent
4ea9d20
commit 9eae47d
Showing
2 changed files
with
24 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// src/defaultPrompt.js | ||
|
||
export default `Take the code from each file sent and produce a response in markdown explaining the code. | ||
Ensure that the markdown returned uses semantic headings (i.e., first heading should have one hashtag (#)). | ||
The first heading should be an appropriate title for the document (not README.md). | ||
Give a "level 2 heading" for: | ||
- the project structure | ||
- each file sent (do not make a heading for the relative path of the file) | ||
Ensure that in your explanation of the code that you refer to code snippets from the file(s) that are sent.\n\n`; |