mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 10:58:17 -05:00
Ability to download new models are gone #797
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @zono50 on GitHub (May 3, 2024).
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