From 7af678159c29edb3bc2a51a72665073d58f2352f Mon Sep 17 00:00:00 2001 From: Luke Southam Date: Sat, 8 Jul 2023 15:22:52 +0100 Subject: [PATCH] Update whispercpp.pyx --- whispercpp.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whispercpp.pyx b/whispercpp.pyx index f780dcc..92af4c1 100644 --- a/whispercpp.pyx +++ b/whispercpp.pyx @@ -22,7 +22,7 @@ cdef int N_THREADS = os.cpu_count() MODELS = { 'ggml-tiny.bin': 'https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-tiny.bin', 'ggml-base.bin': 'https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-base.bin', - 'ggml-small.bin': 'hhttps://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-small.bin', + 'ggml-small.bin': 'https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-small.bin', 'ggml-medium.bin': 'https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-medium.bin', 'ggml-large.bin': 'https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-large.bin', }