diff --git a/memory/memories.db b/memory/memories.db index 9a35c6251..9d5edf20e 100644 Binary files a/memory/memories.db and b/memory/memories.db differ diff --git a/memory/memories.db-shm b/memory/memories.db-shm index 6d564d446..d83e69f59 100644 Binary files a/memory/memories.db-shm and b/memory/memories.db-shm differ diff --git a/memory/memories.db-wal b/memory/memories.db-wal index cf4d90d8e..8ec99933c 100644 Binary files a/memory/memories.db-wal and b/memory/memories.db-wal differ diff --git a/tools/meeting-notes/dist/index.js b/tools/meeting-notes/dist/index.js index 9c2394492..955a41057 100644 --- a/tools/meeting-notes/dist/index.js +++ b/tools/meeting-notes/dist/index.js @@ -228,6 +228,11 @@ class MeetingNotesBot { const combined = Buffer.concat(buffers, totalLength); this.audioBuffers.set(userId, []); const userName = this.userIdToName.get(userId) || userId; + console.log(`[DEBUG] ${userName}: ${buffers.length} chunks, ${totalLength} bytes total`); + if (totalLength < 1000) { + console.log(`[DEBUG] ${userName}: chunk too small, skipping`); + return; + } const timestamp = Date.now(); const rawFile = resolve(this.transcriptsDir, `chunk-${userName}-${timestamp}.raw`); const wavFile = rawFile.replace('.raw', '.wav');