-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Closed
Labels
bugSomething isn't workingSomething isn't workingpossible bugBug was reported but is not confirmed or is unable to be replicated.Bug was reported but is not confirmed or is unable to be replicated.
Description
How are you running AnythingLLM?
Docker (local)
What happened?
When attempting to pull and parse a file via a URL either with RAG modal or @agent mode, if the URL contains uppercase characters the prcess will fail, this is because the validateURL func converts the URL to lowercase which results in a 404 error when the fetching the content type. This is the culprit:
anything-llm/collector/utils/url/index.js
Line 83 in 89a0149
| let destination = url.trim().toLowerCase(); |
Remove .toLowerCase() and it should work.
Are there known steps to reproduce?
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingpossible bugBug was reported but is not confirmed or is unable to be replicated.Bug was reported but is not confirmed or is unable to be replicated.