Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ plugins {
group = "com.icc.qasker"
// 프로젝트 버전 (Docker 이미지 태그, 배포 아티팩트 버전에 사용)
// 예: jib으로 빌드하면 Docker 이미지에 "1.7.0" 태그가 붙음
version = "3.0.0"
version = "3.0.1"

// Git hooks 경로를 .githooks/로 자동 설정
// 예: ./gradlew build 실행 시 자동으로 git config core.hooksPath .githooks 적용
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
public class EssayGradingServiceImpl implements EssayGradingService {

private static final String GRADING_MODEL = "gemini-3.1-flash-lite-preview";
private static final double PRICE_INPUT_PER_1M = 0.075;
private static final double PRICE_OUTPUT_PER_1M = 0.30;
private static final double PRICE_INPUT_PER_1M = 0.25;
private static final double PRICE_OUTPUT_PER_1M = 1.50;

private final ChatModel chatModel;
private final ObjectMapper objectMapper;
Expand Down
Loading