diff --git a/memory/memories.db-wal b/memory/memories.db-wal index 4d2d14668..def6c55e1 100644 Binary files a/memory/memories.db-wal and b/memory/memories.db-wal differ diff --git a/tools/meeting-notes/src/index.ts b/tools/meeting-notes/src/index.ts index 905c3029d..9fe093f11 100644 --- a/tools/meeting-notes/src/index.ts +++ b/tools/meeting-notes/src/index.ts @@ -58,8 +58,10 @@ async function transcribeWithWhisper(wavPath: string): Promise { 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(),