From 78548dc03ff4ec6b2108a19ea54cde44102ddf69 Mon Sep 17 00:00:00 2001 From: Maciek Date: Fri, 14 Apr 2023 18:36:09 +0200 Subject: [PATCH] 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. --- examples/talk-llama/talk-llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/talk-llama/talk-llama.cpp b/examples/talk-llama/talk-llama.cpp index 65fd20ddf35..4680c174e64 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; };