We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 556a5c6 commit 82a98a5Copy full SHA for 82a98a5
example/e-rag.cpp
@@ -243,9 +243,9 @@ int main() try {
243
// initialize the library
244
ac::llama::initLibrary();
245
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";
+ // This model won't work for this example, but it's a placeholder
+ // Download better model - llama3.2 8b for example
+ std::string modelGguf = AC_TEST_DATA_LLAMA_DIR "/gpt2-117m-q6_k.gguf";
249
std::string embeddingModelGguf = AC_TEST_DATA_LLAMA_DIR "/bge-small-en-v1.5-f16.gguf";
250
auto modelLoadProgressCallback = [](float progress) {
251
const int barWidth = 50;
0 commit comments