feat: 히스토리 자동 타이틀 + 카드 UI 분리

전사 완료 후 LLM이 10단어 이내 제목 자동 생성 (fire-and-forget).
DB에 title 컬럼 추가 + 마이그레이션.
HistoryEntryCard: 제목(볼드, ellipsis) + 내용(2줄 미리보기) 분리.
This commit is contained in:
Yun Chan 2026-04-08 11:54:37 +09:00
parent b452ebbe52
commit 239fb820b8
5 changed files with 68 additions and 1 deletions

View file

@ -8,6 +8,7 @@ export const history = sqliteTable(
'history',
{
id: text('id').primaryKey(),
title: text('title'),
originalText: text('original_text').notNull(),
polishedText: text('polished_text'),
focusedApp: text('focused_app'),