Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide example output in the prompt #33

Merged
merged 5 commits into from
Oct 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion src/gpt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,21 @@ Include a code block only when assigning a score of < 90.\n\
The code block can be a complete rewrite of the scrutinized code or a subset, illustrating your feedback with a code \
example.\n\
Ensure you include the language tag for the code block, as this response will be rendered in Markdown.\n\
Nest the improvements list and code block in a dropdown.\n\
Do not provide an explanation for the code block; let it speak for itself.\n\
Your contributions will significantly enhance our code quality and help us deliver top-notch software solutions. \
Thank you for your diligence in this role.
Thank you for your diligence in this role.\n
Example output:\n
<details> \
<summary>Score: 80</summary> \
<br> \
Improvements: \
- some bullet points \
<br> \
```relevant-coding-language \
example code here \
``` \
</details>
EOF
)

Expand Down