You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const comboPrompt = `As a senior engineer, you're tasked with reviewing a documentation PR. Your review will be conducted through two distinct lenses, both centered around an assertion related to usability. The first lens will focus on examining the diff itself — providing targeted feedback on what the PR author actually contributed. The second lens will compare the diff to the entire set of changed files, assessing how the contribution fits within the larger context in relation to the usability assertion. For each lens, provide feedback and determine if the usability assertion is satisfied. You should speak directly to the author and refer to them in second person. Your output should be a JSON-formatted array with two objects. Each object should contain the following properties: 'satisfied' (either a ✅ or ❌ to indicate if the assertion is met), 'scope' (either 'Diff' or 'Integrated'), and 'feedback' (a string providing your targeted feedback for that lens). Here's the assertion: ${assertion}\n\nHere's the diff:\n\n${diff}\n\nHere's the original files:\n\n${file}\n\nBear in mind that some of the files may have been renamed. Remember, do not wrap the JSON in a code block.`;
276
+
const comboPrompt = `As a senior engineer, you're tasked with reviewing a documentation PR. Your review comprises two distinct perspectives, each focused on a specific aspect of usability.
277
+
278
+
- **First Perspective**: Examine the PR's diff. Provide targeted feedback on the author's contribution.
279
+
- **Second Perspective**: Assess how the diff integrates with the entire set of changed files, evaluating its contribution to the overall usability.
280
+
281
+
**Usability Assertion**: ${assertion}
282
+
283
+
**PR Diff**: ${diff}
284
+
285
+
**Original Files**: ${file}
286
+
287
+
(Note: Some files may have been renamed.)
288
+
289
+
**Your Task**: Provide feedback for each perspective. Determine if the usability assertion is met in each context.
290
+
291
+
**Output Format**: Your response should be a JSON-formatted array containing exactly two objects. Each object must have the following properties:
292
+
- 'satisfied': Indicate if the assertion is met (✅ for yes, ❌ for no).
293
+
- 'scope': 'Diff' for the first perspective, 'Integrated' for the second.
294
+
- 'feedback': A string providing your targeted feedback.
295
+
296
+
Example Output:
297
+
{
298
+
"feedback": [
299
+
{
300
+
"satisfied": "✅",
301
+
"scope": "Diff",
302
+
"feedback": "Your changes in the PR are clear and enhance the readability of the documentation."
303
+
},
304
+
{
305
+
"satisfied": "❌",
306
+
"scope": "Integrated",
307
+
"feedback": "The changes do not align well with the overall structure and flow of the existing documentation."
Copy file name to clipboardexpand all lines: dist/open_ai/index.js
+52-14
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,42 @@ const openai = new openAi({
37
37
});
38
38
// This wil generate our prompt using the diff, assertion, and whole file
39
39
constgeneratePrompt=(diff,assertion,file)=>{
40
-
constcomboPrompt=`As a senior engineer, you're tasked with reviewing a documentation PR. Your review will be conducted through two distinct lenses, both centered around an assertion related to usability. The first lens will focus on examining the diff itself — providing targeted feedback on what the PR author actually contributed. The second lens will compare the diff to the entire set of changed files, assessing how the contribution fits within the larger context in relation to the usability assertion. For each lens, provide feedback and determine if the usability assertion is satisfied. You should speak directly to the author and refer to them in second person. Your output should be a JSON-formatted array with two objects. Each object should contain the following properties: 'satisfied' (either a ✅ or ❌ to indicate if the assertion is met), 'scope' (either 'Diff' or 'Integrated'), and 'feedback' (a string providing your targeted feedback for that lens). Here's the assertion: ${assertion}\n\nHere's the diff:\n\n${diff}\n\nHere's the original files:\n\n${file}\n\nBear in mind that some of the files may have been renamed. Remember, do not wrap the JSON in a code block.`;
40
+
constcomboPrompt=`As a senior engineer, you're tasked with reviewing a documentation PR. Your review comprises two distinct perspectives, each focused on a specific aspect of usability.
41
+
42
+
- **First Perspective**: Examine the PR's diff. Provide targeted feedback on the author's contribution.
43
+
- **Second Perspective**: Assess how the diff integrates with the entire set of changed files, evaluating its contribution to the overall usability.
44
+
45
+
**Usability Assertion**: ${assertion}
46
+
47
+
**PR Diff**: ${diff}
48
+
49
+
**Original Files**: ${file}
50
+
51
+
(Note: Some files may have been renamed.)
52
+
53
+
**Your Task**: Provide feedback for each perspective. Determine if the usability assertion is met in each context.
54
+
55
+
**Output Format**: Your response should be a JSON-formatted array containing exactly two objects. Each object must have the following properties:
56
+
- 'satisfied': Indicate if the assertion is met (✅ for yes, ❌ for no).
57
+
- 'scope': 'Diff' for the first perspective, 'Integrated' for the second.
58
+
- 'feedback': A string providing your targeted feedback.
59
+
60
+
Example Output:
61
+
{
62
+
"feedback": [
63
+
{
64
+
"satisfied": "✅",
65
+
"scope": "Diff",
66
+
"feedback": "Your changes in the PR are clear and enhance the readability of the documentation."
67
+
},
68
+
{
69
+
"satisfied": "❌",
70
+
"scope": "Integrated",
71
+
"feedback": "The changes do not align well with the overall structure and flow of the existing documentation."
constcomboPrompt=`As a senior engineer, you're tasked with reviewing a documentation PR. Your review will be conducted through two distinct lenses, both centered around an assertion related to usability. The first lens will focus on examining the diff itself — providing targeted feedback on what the PR author actually contributed. The second lens will compare the diff to the entire set of changed files, assessing how the contribution fits within the larger context in relation to the usability assertion. For each lens, provide feedback and determine if the usability assertion is satisfied. You should speak directly to the author and refer to them in second person. Your output should be a JSON-formatted array with two objects. Each object should contain the following properties: 'satisfied' (either a ✅ or ❌ to indicate if the assertion is met), 'scope' (either 'Diff' or 'Integrated'), and 'feedback' (a string providing your targeted feedback for that lens). Here's the assertion: ${assertion}\n\nHere's the diff:\n\n${diff}\n\nHere's the original files:\n\n${file}\n\nBear in mind that some of the files may have been renamed. Remember, do not wrap the JSON in a code block.`;
26
+
constcomboPrompt=`As a senior engineer, you're tasked with reviewing a documentation PR. Your review comprises two distinct perspectives, each focused on a specific aspect of usability.
27
+
28
+
- **First Perspective**: Examine the PR's diff. Provide targeted feedback on the author's contribution.
29
+
- **Second Perspective**: Assess how the diff integrates with the entire set of changed files, evaluating its contribution to the overall usability.
30
+
31
+
**Usability Assertion**: ${assertion}
32
+
33
+
**PR Diff**: ${diff}
34
+
35
+
**Original Files**: ${file}
36
+
37
+
(Note: Some files may have been renamed.)
38
+
39
+
**Your Task**: Provide feedback for each perspective. Determine if the usability assertion is met in each context.
40
+
41
+
**Output Format**: Your response should be a JSON-formatted array containing exactly two objects. Each object must have the following properties:
42
+
- 'satisfied': Indicate if the assertion is met (✅ for yes, ❌ for no).
43
+
- 'scope': 'Diff' for the first perspective, 'Integrated' for the second.
44
+
- 'feedback': A string providing your targeted feedback.
45
+
46
+
Example Output:
47
+
{
48
+
"feedback": [
49
+
{
50
+
"satisfied": "✅",
51
+
"scope": "Diff",
52
+
"feedback": "Your changes in the PR are clear and enhance the readability of the documentation."
53
+
},
54
+
{
55
+
"satisfied": "❌",
56
+
"scope": "Integrated",
57
+
"feedback": "The changes do not align well with the overall structure and flow of the existing documentation."
0 commit comments