From 68911c08dfd2d82d6539c6669be769cd2c24d6fd Mon Sep 17 00:00:00 2001 From: JongHyunJung Date: Wed, 9 Oct 2024 05:09:19 +0900 Subject: [PATCH] =?UTF-8?q?refactor(BE):=20AI=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EB=A6=AC=EB=B7=B0=20=EB=AA=A8=EB=8D=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - llama-3.1-70b-versatile --- .github/scripts/ai_code_review.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/ai_code_review.py b/.github/scripts/ai_code_review.py index 82a4b08..14b93bf 100644 --- a/.github/scripts/ai_code_review.py +++ b/.github/scripts/ai_code_review.py @@ -59,7 +59,7 @@ def get_latest_commit_id(repo, pr_number, token): def review_code_groq(prompt): try: response = groq_client.chat.completions.create( - model="llama3-70b-8192", + model="llama-3.1-70b-versatile", messages=[ {"role": "system", "content": "당신은 FANNG 시니어 개발자 출신의 전문적인 코드 리뷰어입니다. 특히 백엔드의 경우 Python, FastAPI, 프론트의 경우 React와 Next.js에 깊은 조예와 전문성을 가지고 있습니다. "}, {"role": "user", "content": prompt}