[GH-ISSUE #2234] Native LLM Provider "waiting for models" to populate #1455

Closed
opened 2026-02-22 18:24:53 -05:00 by yindo · 2 comments
Owner

Originally created by @Ace-Rimmer-Space-Adventurer on GitHub (Sep 6, 2024).
Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/2234

What would cause my "model selection" drop down to no populate any models?
image

AnythingLLM is built on CasaOS. I'm accessing it through a browser:3051
Other Apps on CasaOS can comm back and forth to the internet no problem.

Seems like AnytingLLM is having some comm issues.

If i switch to Anthropic LLM Provider w/ my key configured I get this error when chatting.

"Could not respond to message.
An error occurred while streaming response. NetworkError when attempting to fetch resource."

Where are the logs stored? Is there a command line tool / commands to test?
I want to help.
Thanks
Ace

Originally created by @Ace-Rimmer-Space-Adventurer on GitHub (Sep 6, 2024). Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/2234 What would cause my "model selection" drop down to no populate any models? ![image](https://github.com/user-attachments/assets/42ff1a20-aafb-40e8-a64c-37191223f411) AnythingLLM is built on CasaOS. I'm accessing it through a browser:3051 Other Apps on CasaOS can comm back and forth to the internet no problem. Seems like AnytingLLM is having some comm issues. If i switch to Anthropic LLM Provider w/ my key configured I get this error when chatting. "Could not respond to message. An error occurred while streaming response. NetworkError when attempting to fetch resource." Where are the logs stored? Is there a command line tool / commands to test? I want to help. Thanks Ace
yindo closed this issue 2026-02-22 18:24:53 -05:00
Author
Owner

@Ace-Rimmer-Space-Adventurer commented on GitHub (Sep 6, 2024):

Here is a visual of the second error after switching to anthropic.
image

@Ace-Rimmer-Space-Adventurer commented on GitHub (Sep 6, 2024): Here is a visual of the second error after switching to anthropic. ![image](https://github.com/user-attachments/assets/5e280cda-6cd2-4e41-9905-4f753d1e3805)
Author
Owner

@timothycarambat commented on GitHub (Sep 6, 2024):

What would cause my "model selection" drop down to no populate any models?

No GGUFs in the storage directory. Since you put your issue in the wrong repo (docs vs product!) the template asks how you are using AnythingLLM. I would presume this is in docker since we dont offer native support in desktop - which would mean all storage is in whatever you set as STORAGE_LOCATION when booting the container.

eg:

export STORAGE_LOCATION=$HOME/anythingllm && \
mkdir -p $STORAGE_LOCATION && \
touch "$STORAGE_LOCATION/.env" && \
docker run -d -p 3001:3001 \
--cap-add SYS_ADMIN \
-v ${STORAGE_LOCATION}:/app/server/storage \
-v ${STORAGE_LOCATION}/.env:/app/server/.env \
-e STORAGE_DIR="/app/server/storage" \
mintplexlabs/anythingllm

=> models would be in $HOME/anythingllm/models/downloaded
https://github.com/Mintplex-Labs/anything-llm/blob/master/server/storage/models/README.md#where-do-i-put-my-gguf-model

Since you are in docker, logs are in docker logs <CONTAINER_ID> and will likely tell you why you cannot reach outbound to Anthropics API or otherwise

@timothycarambat commented on GitHub (Sep 6, 2024): > What would cause my "model selection" drop down to no populate any models? No GGUFs in the storage directory. Since you put your issue in the wrong repo (docs vs product!) the template asks how you are using AnythingLLM. I would presume this is in docker since we dont offer native support in desktop - which would mean all storage is in whatever you set as `STORAGE_LOCATION` when booting the container. eg: ```shell export STORAGE_LOCATION=$HOME/anythingllm && \ mkdir -p $STORAGE_LOCATION && \ touch "$STORAGE_LOCATION/.env" && \ docker run -d -p 3001:3001 \ --cap-add SYS_ADMIN \ -v ${STORAGE_LOCATION}:/app/server/storage \ -v ${STORAGE_LOCATION}/.env:/app/server/.env \ -e STORAGE_DIR="/app/server/storage" \ mintplexlabs/anythingllm ``` => models would be in `$HOME/anythingllm/models/downloaded` https://github.com/Mintplex-Labs/anything-llm/blob/master/server/storage/models/README.md#where-do-i-put-my-gguf-model Since you are in docker, logs are in `docker logs <CONTAINER_ID>` and will likely tell you why you cannot reach outbound to Anthropics API or otherwise
yindo changed title from Native LLM Provider "waiting for models" to populate to [GH-ISSUE #2234] Native LLM Provider "waiting for models" to populate 2026-06-05 14:40:51 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#1455