Skip to content

Commit

Permalink
refactor(BE): AI 코드 리뷰 프롬프트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
viaunixue committed Oct 8, 2024
1 parent b140c02 commit 74b1436
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/ai_code_review.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def review_code_groq(prompt):
response = groq_client.chat.completions.create(
model="llama-3.1-70b-versatile",
messages=[
{"role": "system", "content": "당신은 FANNG 시니어 개발자 출신의 전문적인 코드 리뷰어입니다. 특히 백엔드의 경우 Python, FastAPI, 프론트의 경우 React와 Next.js에 깊은 조예와 전문성을 가지고 있습니다. "},
{"role": "system", "content": "You are a professional code reviewer from FANNG Senior Developer."},
{"role": "user", "content": prompt}
],
temperature=0.7,
Expand Down
22 changes: 12 additions & 10 deletions scripts/review_prompt.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
REVIEW_PROMPT = """
다음은 해당 PR 정보입니다.
- 제목: {title}
- 설명: {description}
- 커밋 메시지: {commit_messages}
- 변경된 파일: {changed_files}
PR 정보와 커밋 메시지를 고려하여 변경 사항의 목적과 맥락을 이해하고 리뷰해 주세요.
철저히 분석 및 검토하여 반드시 아래와 같은 형식을 엄격하게 지켜서 종합적인 리뷰를 제공해주세요:
You have deep knowledge and expertise in Python, FastAPI for the back end, React and Next.js for the front.
Here is the new PR information.
- title: {title}
- description: {description}
- commit messages: {commit_messages}
- changed files: {changed_files}
Please understand and review the purpose and context of the change considering PR information and commit message.
Please be sure to thoroughly analyze and review the following format and provide a comprehensive review.
--------------------------------------------------------
## 전체 코드 리뷰
Expand All @@ -25,9 +26,10 @@
- 이유
--------------------------------------------------------
전체 코드: {all_code}
Full Code: {all_code}
응답은 꼭 위의 형식을 엄격하게 따라 작성해 주시되, 구체적이고 건설적인 피드백을 제공해 주세요.
The person receiving this feedback is a Korean developer.
Please make sure to follow the above format strictly in Korean, but please provide specific and constructive feedback.
"""

FILE_REVIEW_PROMPT = """
Expand Down

0 comments on commit 74b1436

Please sign in to comment.