mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 19:08:59 -05:00
[GH-ISSUE #9645] searxng Error searching #31121
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 @YukikazeMua on GitHub (Feb 8, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/9645
Bug Report
**Open WebUI Version : 0.5.10
**Ollama (if applicable): deepseek-r1 14b
Operating System: [e.g., Windows 10, macOS Big Sur, Ubuntu 20.04]
Browser (if applicable): [e.g., Chrome 100.0, Firefox 98.0]
BUG Log:
2025-02-08 14:26:55 INFO [open_webui.routers.retrieval] save_docs_to_vector_db: document web-search-3ebf311c75874cda6a2fa01e0ec4c27b19f399cfe94f278294f6
2025-02-08 14:26:55 ERROR [open_webui.routers.retrieval] The content provided is empty. Please ensure that there is text or data present before proceeding.
2025-02-08 14:26:55 Traceback (most recent call last):
2025-02-08 14:26:55 File "/app/backend/open_webui/routers/retrieval.py", line 1295, in process_web_search
2025-02-08 14:26:55 save_docs_to_vector_db(
2025-02-08 14:26:55 File "/app/backend/open_webui/routers/retrieval.py", line 729, in save_docs_to_vector_db
2025-02-08 14:26:55 raise ValueError(ERROR_MESSAGES.EMPTY_CONTENT)
2025-02-08 14:26:55 ValueError: The content provided is empty. Please ensure that there is text or data present before proceeding.
2025-02-08 14:26:55 ERROR [open_webui.utils.middleware] 400: [ERROR: The content provided is empty. Please ensure that there is text or data present before proceeding.]
2025-02-08 14:26:55 Traceback (most recent call last):
2025-02-08 14:26:55 File "/app/backend/open_webui/routers/retrieval.py", line 1295, in process_web_search
2025-02-08 14:26:55 save_docs_to_vector_db(
2025-02-08 14:26:55 File "/app/backend/open_webui/routers/retrieval.py", line 729, in save_docs_to_vector_db
2025-02-08 14:26:55 raise ValueError(ERROR_MESSAGES.EMPTY_CONTENT)
2025-02-08 14:26:55 ValueError: The content provided is empty. Please ensure that there is text or data present before proceeding.
2025-02-08 14:26:55
2025-02-08 14:26:55 During handling of the above exception, another exception occurred:
2025-02-08 14:26:55
2025-02-08 14:26:55 Traceback (most recent call last):
2025-02-08 14:26:55 File "/app/backend/open_webui/utils/middleware.py", line 429, in chat_web_search_handler
2025-02-08 14:26:55 results = await loop.run_in_executor(
2025-02-08 14:26:55 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-02-08 14:26:55 File "/usr/local/lib/python3.11/concurrent/futures/thread.py", line 58, in run
2025-02-08 14:26:55 result = self.fn(*self.args, **self.kwargs)
2025-02-08 14:26:55 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-02-08 14:26:55 File "/app/backend/open_webui/utils/middleware.py", line 431, in
2025-02-08 14:26:55 lambda: process_web_search(
2025-02-08 14:26:55 ^^^^^^^^^^^^^^^^^^^
2025-02-08 14:26:55 File "/app/backend/open_webui/routers/retrieval.py", line 1306, in process_web_search
2025-02-08 14:26:55 raise HTTPException(
2025-02-08 14:26:55 fastapi.exceptions.HTTPException: 400: [ERROR: The content provided is empty. Please ensure that there is text or data present before proceeding.]
Thank you!