On the latest version of open-webui, and when i go to settings > Models, this is the only option I have
I remember on a previous installation, i had the ability to download models from the webui. Not sure why that is not showing here.
Installed this using docker command - docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main
OS is Arch Linux
Any help would be greatly appreciated
Originally created by @zono50 on GitHub (May 3, 2024).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/1947
On the latest version of open-webui, and when i go to settings > Models, this is the only option I have

I remember on a previous installation, i had the ability to download models from the webui. Not sure why that is not showing here.
Installed this using docker command - docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main
OS is Arch Linux
Any help would be greatly appreciated
<!-- gh-comment-id:2092919648 -->
@justinh-rahb commented on GitHub (May 3, 2024):
> LISTEN 0 4096 127.0.0.1:11434 0.0.0.0:*
>
Ya, the issue is Ollama not listening to all interfaces, only `localhost`.
https://github.com/ollama/ollama/blob/main/docs/faq.md#setting-environment-variables-on-linux
Set the `OLLAMA_HOST=0.0.0.0` environment variable.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @zono50 on GitHub (May 3, 2024).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/1947
On the latest version of open-webui, and when i go to settings > Models, this is the only option I have
I remember on a previous installation, i had the ability to download models from the webui. Not sure why that is not showing here.
Installed this using docker command - docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main
OS is Arch Linux
Any help would be greatly appreciated
@justinh-rahb commented on GitHub (May 3, 2024):
What does this show?
@zono50 commented on GitHub (May 3, 2024):
LISTEN 0 4096 127.0.0.1:11434 0.0.0.0:*
@justinh-rahb commented on GitHub (May 3, 2024):
Ya, the issue is Ollama not listening to all interfaces, only
localhost.https://github.com/ollama/ollama/blob/main/docs/faq.md#setting-environment-variables-on-linux
Set the
OLLAMA_HOST=0.0.0.0environment variable.@zono50 commented on GitHub (May 3, 2024):
That was it! thanks for the assistance