diff --git a/memory/memories.db-wal b/memory/memories.db-wal index ca016cc0c..12a872161 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 9fe093f11..8ba8ae639 100644 --- a/tools/meeting-notes/src/index.ts +++ b/tools/meeting-notes/src/index.ts @@ -59,9 +59,10 @@ async function transcribeWithWhisper(wavPath: string): Promise { '-c', ` import os +os.environ['CUDA_VISIBLE_DEVICES'] = '' 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(),