Skip to content

Commit

Permalink
talk-llama : correct default speak.sh path (ggerganov#720)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mab122 authored Apr 14, 2023
1 parent 66110da commit 78548dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/talk-llama/talk-llama.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit 78548dc

Please sign in to comment.