Phase 15 구현: Auto Polish + AI 채팅 + 마인드맵 + 공유

- Auto Polish: LLM으로 전사 다듬기 (필러 제거, 문장 교정)
- AI 채팅: 회의 전사 기반 Q&A (LocalLLMService.chatStream 활용, 스트리밍)
- 마인드맵: 빌트인 템플릿 추가 (마크다운 계층 트리)
- 공유: 클립보드 복사 메뉴 추가
- MeetingChatPanel UI (접기/펼치기, 스트리밍 인디케이터)
- TranscriptTab에 AI 다듬기 버튼 추가
- 12개 locale i18n 키 추가
This commit is contained in:
Yun Chan 2026-04-08 10:18:42 +09:00
parent d4928ffa60
commit 2b17bf47b7
26 changed files with 980 additions and 26 deletions

View file

@ -210,7 +210,7 @@ export const meetingDocuments = sqliteTable(
id: text('id').primaryKey(),
sessionId: text('session_id').notNull(),
templateType: text('template_type', {
enum: ['minutes', 'report', 'idea-note', 'custom'],
enum: ['minutes', 'report', 'idea-note', 'custom', 'mindmap'],
}).notNull(),
title: text('title').notNull(),
content: text('content').notNull().default(''),