From 1aa6416714d185dd271933df3d0c210df76d8e6f Mon Sep 17 00:00:00 2001 From: Luke Southam Date: Sat, 8 Jul 2023 13:49:19 +0100 Subject: [PATCH] Update whispercpp.pyx Fixing windows issues with models path --- whispercpp.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whispercpp.pyx b/whispercpp.pyx index f780dcc..5fef242 100644 --- a/whispercpp.pyx +++ b/whispercpp.pyx @@ -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)