2026-03-02T07-41-08_auto_memory/memories.db-wal

This commit is contained in:
Nicholai Vogel 2026-03-02 00:41:08 -07:00
parent 3a41ca2103
commit 1db07d8f14
2 changed files with 3 additions and 1 deletions

Binary file not shown.

View File

@ -58,8 +58,10 @@ async function transcribeWithWhisper(wavPath: string): Promise<string> {
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(),