We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5ab6e1 commit d13f89cCopy full SHA for d13f89c
.github/workflows/code-review.yml
@@ -45,6 +45,7 @@ jobs:
45
with open('pr_diff.txt', 'r') as file:
46
diff_content = file.read()
47
48
+ # GPT 모델 호출
49
response = openai.chat.completions.create(
50
model=model_name,
51
messages=[
@@ -53,7 +54,7 @@ jobs:
53
54
]
55
)
56
- # GPT 리뷰 결과 출력
57
+ # GPT 리뷰 결과 추출
58
review_feedback = response['choices'][0]['message']['content']
59
print(review_feedback)
60
EOF
0 commit comments