From: Maciek Date: Fri, 14 Apr 2023 16:36:09 +0000 (+0200) Subject: talk-llama : correct default speak.sh path (#720) X-Git-Tag: upstream/1.7.4~1506 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=78548dc03ff4ec6b2108a19ea54cde44102ddf69;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp talk-llama : correct default speak.sh path (#720) There is `speak.sh` file in `./examples/talk-llama` as described in README. However `./examples/talk/speak.sh` is used in `talk-llama.cpp`, this commit corrects that. --- diff --git a/examples/talk-llama/talk-llama.cpp b/examples/talk-llama/talk-llama.cpp index 65fd20dd..4680c174 100644 --- a/examples/talk-llama/talk-llama.cpp +++ b/examples/talk-llama/talk-llama.cpp @@ -49,7 +49,7 @@ struct whisper_params { std::string language = "en"; std::string model_wsp = "models/ggml-base.en.bin"; std::string model_llama = "models/ggml-llama-7B.bin"; - std::string speak = "./examples/talk/speak.sh"; + std::string speak = "./examples/talk-llama/speak.sh"; std::string prompt = ""; std::string fname_out; };