From 2857f5fc415d907f8a631cc968e983e5f94da321 Mon Sep 17 00:00:00 2001 From: 1Seob Date: Mon, 12 Jan 2026 00:11:19 +0900 Subject: [PATCH] =?UTF-8?q?Revert=20"refactor(report):=20=EC=A3=BC?= =?UTF-8?q?=EA=B0=84=20=EB=A6=AC=ED=8F=AC=ED=8A=B8=20=EC=83=9D=EC=84=B1=20?= =?UTF-8?q?LLM=EC=9D=98=20=ED=8C=8C=EB=9D=BC=EB=AF=B8=ED=84=B0=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD=20(#81)"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 32eaf081df74983de9d076667dd8085b7db57314. --- .../domain/weeklyreport/core/infra/WeeklyReportLlmClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/devkor/ifive/nadab/domain/weeklyreport/core/infra/WeeklyReportLlmClient.java b/src/main/java/com/devkor/ifive/nadab/domain/weeklyreport/core/infra/WeeklyReportLlmClient.java index d640983..fd53a51 100644 --- a/src/main/java/com/devkor/ifive/nadab/domain/weeklyreport/core/infra/WeeklyReportLlmClient.java +++ b/src/main/java/com/devkor/ifive/nadab/domain/weeklyreport/core/infra/WeeklyReportLlmClient.java @@ -34,7 +34,7 @@ public AiWeeklyReportResultDto generate(String weekStartDate, String weekEndDate OpenAiChatOptions options = OpenAiChatOptions.builder() .model(OpenAiApi.ChatModel.GPT_5_MINI) - .reasoningEffort("medium") + .reasoningEffort("low") .temperature(1.0) .build();