Skip to content

Commit 82a98a5

Browse files
committed
fix: remove reference to the local model
1 parent 556a5c6 commit 82a98a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

example/e-rag.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,9 @@ int main() try {
243243
// initialize the library
244244
ac::llama::initLibrary();
245245

246-
// load model
247-
// std::string modelGguf = AC_TEST_DATA_LLAMA_DIR "/gpt2-117m-q6_k.gguf";
248-
std::string modelGguf = AC_TEST_DATA_LLAMA_DIR "/../../../tmp/llava-llama-3-8b-v1_1-f16.gguf";
246+
// This model won't work for this example, but it's a placeholder
247+
// Download better model - llama3.2 8b for example
248+
std::string modelGguf = AC_TEST_DATA_LLAMA_DIR "/gpt2-117m-q6_k.gguf";
249249
std::string embeddingModelGguf = AC_TEST_DATA_LLAMA_DIR "/bge-small-en-v1.5-f16.gguf";
250250
auto modelLoadProgressCallback = [](float progress) {
251251
const int barWidth = 50;

0 commit comments

Comments
 (0)