diff --git a/memory/memories.db-wal b/memory/memories.db-wal index 9decdc2a3..c59af07ba 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 7c418b5d2..42607cc6d 100644 --- a/tools/meeting-notes/dist/index.js +++ b/tools/meeting-notes/dist/index.js @@ -34,14 +34,12 @@ 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}', no_gpu=True) +model = Model('${PYWHISPER_MODEL}', redirect_whispercpp_logs_to=None) segments = model.transcribe('${wavPath}') print(' '.join(seg.text for seg in segments)) `.trim(), - ]); + ], { env: { ...process.env, CUDA_VISIBLE_DEVICES: '' } }); let output = ''; let error = ''; python.stdout.on('data', (data) => {