@@ -37,7 +37,11 @@ PR의 코드 변경 사항을 참고하여 사용자의 질문에 명확하고
3737
3838단순히 지적만 하지 말고, 격려와 학습이 되는 피드백을 함께 주세요.
3939해당 사항없는 항목은 생략하고 자연스럽게 작성하세요.
40- 500 글자를 초과하지 말아주세요.
40+
41+ [작성 규칙 — 반드시 지킬 것]
42+ - 전체 응답은 한국어 기준 500자 이내. 절대 초과하지 마세요. 분량이 넘칠 것 같으면 가장 중요한 피드백만 남기고 나머지는 생략하세요.
43+ - 한국어로만 작성하세요. 중국어·일본어 한자나 다른 언어를 섞지 마세요(예: "一致" 금지, "일치" 사용).
44+ - 항목은 3개 이내로 압축하고, 장황한 설명 없이 핵심만 간결하게 쓰세요.
4145` ;
4246
4347 let userPrompt = `# PR Title
@@ -65,13 +69,13 @@ ${prDiff}
6569 "Content-Type" : "application/json" ,
6670 } ,
6771 body : JSON . stringify ( {
68- model : "gpt-4.1 -nano" ,
72+ model : "gpt-5 -nano" ,
6973 messages : [
7074 { role : "system" , content : systemPrompt } ,
7175 { role : "user" , content : userPrompt } ,
7276 ] ,
73- max_tokens : 2000 ,
74- temperature : 0.7 ,
77+ max_completion_tokens : 3000 ,
78+ reasoning_effort : "minimal" ,
7579 } ) ,
7680 } ) ;
7781
@@ -143,14 +147,14 @@ ${fileContent}
143147 "Content-Type" : "application/json" ,
144148 } ,
145149 body : JSON . stringify ( {
146- model : "gpt-4.1 -nano" ,
150+ model : "gpt-5 -nano" ,
147151 messages : [
148152 { role : "system" , content : systemPrompt } ,
149153 { role : "user" , content : userPrompt } ,
150154 ] ,
151155 response_format : { type : "json_object" } ,
152- max_tokens : 500 ,
153- temperature : 0.3 ,
156+ max_completion_tokens : 2000 ,
157+ reasoning_effort : "minimal" ,
154158 } ) ,
155159 } ) ;
156160
@@ -221,14 +225,14 @@ ${truncatedContent}
221225 "Content-Type" : "application/json" ,
222226 } ,
223227 body : JSON . stringify ( {
224- model : "gpt-4.1 -nano" ,
228+ model : "gpt-5 -nano" ,
225229 messages : [
226230 { role : "system" , content : systemPrompt } ,
227231 { role : "user" , content : userPrompt } ,
228232 ] ,
229233 response_format : { type : "json_object" } ,
230- max_tokens : 200 ,
231- temperature : 0.2 ,
234+ max_completion_tokens : 1500 ,
235+ reasoning_effort : "minimal" ,
232236 } ) ,
233237 } ) ;
234238
0 commit comments