feat: [rd] 사운드로고/나레이션 AI 토큰 사용량 기록 추가

- RdController: 사운드로고-AI생성, 사운드로고-TTS 토큰 기록
- CmSongController: 나레이션-가사생성, 나레이션-TTS 토큰 기록
- AI 토큰 사용량 UI에 사운드로고/나레이션 카테고리 분류 추가
This commit is contained in:
김보곤
2026-03-08 12:57:29 +09:00
parent c2ddb625fb
commit 7ef8971b93
3 changed files with 20 additions and 0 deletions

View File

@@ -230,6 +230,8 @@
if (menuName.startsWith('회의록')) return '회의록';
if (menuName.includes('명함')) return '명함OCR';
if (menuName.includes('사업자등록증')) return '사업자등록증OCR';
if (menuName.startsWith('사운드로고')) return '사운드로고';
if (menuName.startsWith('나레이션')) return '나레이션';
return menuName;
};