Update whispercpp.pyx

Fixing windows issues with models path
This commit is contained in:
Luke Southam 2023-07-08 13:49:19 +01:00 committed by GitHub
parent a18d6b1c05
commit 1aa6416714
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import requests
import os
from pathlib import Path
MODELS_DIR = str(Path('~/.ggml-models').expanduser())
MODELS_DIR = str(Path('~/ggml-models').expanduser())
print("Saving models to:", MODELS_DIR)