diff --git a/memory/memories.db-wal b/memory/memories.db-wal index 2d15c3cba..fb0c1e0a4 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 a086fe9de..7c418b5d2 100644 --- a/tools/meeting-notes/dist/index.js +++ b/tools/meeting-notes/dist/index.js @@ -34,8 +34,10 @@ async function transcribeWithWhisper(wavPath) { const python = spawn(PYWHISPER_PYTHON, [ '-c', ` +import os +os.environ['GGML_CUDA'] = '0' from pywhispercpp.model import Model -model = Model('${PYWHISPER_MODEL}') +model = Model('${PYWHISPER_MODEL}', no_gpu=True) segments = model.transcribe('${wavPath}') print(' '.join(seg.text for seg in segments)) `.trim(),