mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 16:06:23 +00:00
- AI 서비스와 Meeting 서비스 통합 개선 - AgendaSummaryDTO에 decisions 필드 추가 (안건별 결정사항 배열) - EndMeetingService에서 AI 서비스 타임아웃 처리 개선 - AIServiceClient에 상세한 에러 로깅 추가 - 회의록 consolidate 프롬프트 개선 - Todo 추출 로직 강화 (자연스러운 표현 인식) - 안건별 decisions 필드 추가 (대시보드 표시용) - 담당자 패턴 인식 개선 - Kubernetes 배포 설정 개선 - meeting-service.yaml에 AI_SERVICE_URL 환경변수 추가 - AI_SERVICE_TIMEOUT 설정 추가 - 데이터베이스 관리 SQL 스크립트 추가 - check-agenda-sections.sql: 안건 섹션 확인 - cleanup-test-data.sql: 테스트 데이터 정리 - insert-test-data-final.sql: 최종 테스트 데이터 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
415 B
SQL
18 lines
415 B
SQL
-- =====================================================
|
|
-- Check agenda_sections data for meeting-test
|
|
-- =====================================================
|
|
|
|
SELECT
|
|
id,
|
|
meeting_id,
|
|
agenda_number,
|
|
agenda_title,
|
|
ai_summary_short,
|
|
LENGTH(summary) as summary_length,
|
|
pending_items,
|
|
todos,
|
|
created_at
|
|
FROM agenda_sections
|
|
WHERE meeting_id = 'meeting-test'
|
|
ORDER BY agenda_number;
|