Skip to content
Merged
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 @@ -45,7 +45,7 @@ public AnalysisResultDto analyzeResult(String repoUrl, String prompt, String aut
log.info("Fetch μ™„λ£Œ - 파일: {}, νŒŒμ‹±: {}",
fetchResult.getFiles_saved(), fetchResult.getFiles_parsed());

saveRepoInfo(mapId, authorizationHeader);
saveRepoInfo(repoUrl, authorizationHeader);

// Step 2: λ§ˆμΈλ“œλ§΅ κΈ°λ³Έ 뢄석 (AI)
AnalyzeResponse analyzeResult = analyzeAI(repoUrl, prompt, authorizationHeader);
Expand Down Expand Up @@ -110,7 +110,6 @@ public FetchResponse fetchRepoInfo(String repoUrl, String authHeader) {
public void saveRepoInfo(String repoUrl, String authHeader) {
Map<String, String> request = new HashMap<>();
request.put("repo_url", repoUrl);
request.put("mode", "DEV"); // 항상 DEV λͺ¨λ“œ

webClient.post()
.uri("/repo/github/repo-info")
Expand Down Expand Up @@ -173,6 +172,8 @@ public MindmapGraphDto getGraph(String mapId, String authHeader) {
.block();
}

// TODO: ν”„λ‘¬ν”„νŠΈ summary λ°˜ν™˜

// μ΅œμ‹  변경사항 μƒˆλ‘œκ³ μΉ¨
public RefreshResponse refreshLatest(String mapId, String prompt, String authHeader) {
Map<String, Object> request = new HashMap<>();
Expand Down