rename : ggerganov -> ggml-org (#3005)

This commit is contained in:
Georgi Gerganov
2025-04-04 16:11:52 +03:00
committed by GitHub
parent 0b17d4507e
commit 2b6d0d2200
15 changed files with 61 additions and 63 deletions

View File

@ -5,7 +5,7 @@
# This simple script is called by Neovim to capture audio from the microphone and transcribe it with Whisper.
# In order for this to work, you need to clone the whisper.cpp repo and build the 'stream' tool
#
# git clone https://github.com/ggerganov/whisper.cpp
# git clone https://github.com/ggml-org/whisper.cpp
# cd whisper.cpp
# make stream
#
@ -31,7 +31,7 @@
model="base.en"
# export the path to the whisper.cpp repo in the WHISPER_CPP_HOME env variable
# https://github.com/ggerganov/whisper.cpp
# https://github.com/ggml-org/whisper.cpp
cd "${WHISPER_CPP_HOME}"
if [ ! -f ./stream ] ; then