mirror of
https://github.com/hwanny1128/HGZero.git
synced 2026-06-13 00:09:10 +00:00
fix: AI 회의록 통합 - decisions 필드 및 Todo assignee 필드 추가
- AgendaSummaryDTO에 decisions 필드 추가 (안건별 결정사항 배열) - ExtractedTodoDTO에 assignee 필드 추가 (담당자 정보) - EndMeetingService에서 AI 추출 담당자 정보 매핑 - Python AI 서비스 모델 및 프롬프트 업데이트
This commit is contained in:
@@ -264,7 +264,7 @@ public class EndMeetingService implements EndMeetingUseCase {
|
||||
.meetingId(meeting.getMeetingId())
|
||||
.minutesId(meeting.getMeetingId()) // 실제로는 minutesId 필요
|
||||
.title(todo.getTitle())
|
||||
.assigneeId("") // AI가 담당자를 추출하지 않으므로 빈 값
|
||||
.assigneeId(todo.getAssignee() != null ? todo.getAssignee() : "") // AI가 추출한 담당자
|
||||
.status("PENDING")
|
||||
.build());
|
||||
})
|
||||
|
||||
@@ -6,7 +6,7 @@ import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* AI 추출 Todo DTO (제목만)
|
||||
* AI 추출 Todo DTO
|
||||
*/
|
||||
@Getter
|
||||
@Builder
|
||||
@@ -18,4 +18,9 @@ public class ExtractedTodoDTO {
|
||||
* Todo 제목
|
||||
*/
|
||||
private String title;
|
||||
|
||||
/**
|
||||
* 담당자 이름 (있는 경우에만)
|
||||
*/
|
||||
private String assignee;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user