Maciek commited on
Commit
d01a1c6
·
unverified ·
1 Parent(s): 209b00a

talk-llama : correct default speak.sh path (#720)

Browse files

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.

Files changed (1) hide show
  1. examples/talk-llama/talk-llama.cpp +1 -1
examples/talk-llama/talk-llama.cpp CHANGED
@@ -49,7 +49,7 @@ struct whisper_params {
49
  std::string language = "en";
50
  std::string model_wsp = "models/ggml-base.en.bin";
51
  std::string model_llama = "models/ggml-llama-7B.bin";
52
- std::string speak = "./examples/talk/speak.sh";
53
  std::string prompt = "";
54
  std::string fname_out;
55
  };
 
49
  std::string language = "en";
50
  std::string model_wsp = "models/ggml-base.en.bin";
51
  std::string model_llama = "models/ggml-llama-7B.bin";
52
+ std::string speak = "./examples/talk-llama/speak.sh";
53
  std::string prompt = "";
54
  std::string fname_out;
55
  };