Skip to content

Commit

Permalink
feat: fix gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
willy-dunamu committed Sep 4, 2024
1 parent 1557d9a commit ada02f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,5 @@ export const constructPromptsArray = (
return languageToInstructionPrompt + JSON.stringify(payload);
});

const answerLanguage = process.env.LANGUAGE
? `, 그리고 앞의 질문에 한글로 답해줘,`
: '';

return [...prompts, answerLanguage];
return prompts;
};
4 changes: 2 additions & 2 deletions packages/code-review-gpt/src/review/prompt/prompts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Format the response in a valid JSON format as a list of feedbacks, where the val
}
}
The filenames and file contents to review are provided below as a list of JSON objects:
The filenames and file contents to review are provided below as a list of JSON objects(Answer me in Korean):
`;

Expand Down Expand Up @@ -68,6 +68,6 @@ Format the response in a valid JSON format as a list of feedbacks, where the val
}
}
The code to review is provided below:
The code to review is provided below(Answer me in Korean):
`;

0 comments on commit ada02f2

Please sign in to comment.