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
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class AlternativeArticleController {

private final AlternativeArticleService alternativeArticleService;

@CreditCheck(cost=1)
// @CreditCheck(cost=1)
@Operation(summary = "대안 기사 분석", description = "리포트의 기사 내용을 기반으로 반대 관점의 기사를 찾아 비교 분석을 수행합니다.")
@GetMapping("/{reportId}/alternative")
public ApiResponse<AlternativeArticleResponseDto> getAlternativeArticle(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class ReportController {

@Operation(summary = "뉴스 기사 AI 분석 및 리포트 생성", description = "뉴스 URL을 입력받아 Clova API를 통해 AI 분석을 수행하고 리포트를 생성하여 저장합니다.")
@PostMapping("")
@CreditCheck(cost=1)
// @CreditCheck(cost=1)
public ApiResponse<ReportResponseDto> analyzeNewsAndCreateReport(
@Parameter(description = "분석할 뉴스 URL", required = true, example = "https://news.naver.com/main/read.naver?mode=LSD&mid=shm&sid1=100&oid=001&aid=0012345678") @RequestBody AnalyzeNewsRequestDTO request,
@CurrentUser @Parameter(hidden = true) User loginUser) {
Expand Down