-
|
Hello guys, I feel I'm coming closer to getting this project off the ground. Now I'm facing this error here (llama3.1:8b-text-q2_K 3.2GB): and for a different model (deepseek-r1:1.5b 20GB): How can I dig deeper what the error might be (i. e. enable verbose logging)? I tried force-reinstalling the AI assistant to no avail. Thanks! Edit: after investigating the container and its storage parameters, I might have found a clue: the host path in ollama is "/opt/project-nomad/storage/ollama" while nomad_admin for example is using "/NOMAD/storage". How can I adjust the storage parameters for the containers downloaded within NOMAD itself? Or could I add ollama and kiwix to the Docker configuration file directly? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 1 reply
-
|
Models won't download if you don't have a Ollama compatible GPU installed. What type of GPU are you using and how are you making it available to the application stack? In my case, I am using an Nvidia card, and I had to install the Nvidia driver and toolkit to my docker VM after passing through my GPU to the same docker VM. |
Beta Was this translation helpful? Give feedback.
-
|
Here's the compose file I used. Notice I didn't add Ollama or Kiwix to this, but I did add a deploy block to the admin service to make my Nvidia GPU available to the stack |
Beta Was this translation helpful? Give feedback.
-
|
Sorry for three responses to this, but if you need to know how to install the Nvidia drivers and toolkit, here's what I did Nvidia GPU Setup on Debian for Docker
|
Beta Was this translation helpful? Give feedback.
-
|
Thank you for your response! I will try the workaround mentioned here: #390 (comment) and will report back. |
Beta Was this translation helpful? Give feedback.
-
|
Ollama in this stack, the way its implemented, will not download any models if you don't have a GPU. I tried it. |
Beta Was this translation helpful? Give feedback.
Thank you for your response!
I found out that this problem impacts not only llama but also kiwix and qdrant; they all use the "wrong" storage path. So I doubt it's because the Nvidia driver.
To answer your questions though, I don't have a graphics card yet, want to try and see the performance using the CPU only. And if that's unbearable, at least I should have the kiwix libraries available.
I will try the workaround mentioned here: #390 (comment) and will report back.