[GH-ISSUE #10913] Can't upload documents in 0.5.17: "400: cannot reshape array of size 305 into shape (143,149,newaxis)" #86819

Closed
opened 2026-05-15 11:09:08 -05:00 by GiteaMirror · 2 comments
Owner

Originally created by @ftab on GitHub (Feb 27, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/10913

Installation Method

helm

Environment

  • Open WebUI Version: 0.5.17

  • Ollama (if applicable): not used (it's talking to LM Studio instead)

  • Operating System: Debian

  • Browser (if applicable): Brave

Confirmation:

  • I have read and followed all the instructions provided in the README.md.
  • I am on the latest version of both Open WebUI and Ollama.
  • I have included the browser console logs.
  • I have included the Docker container logs.
  • I have provided the exact steps to reproduce the bug in the "Steps to Reproduce" section below.

Expected Behavior:

Can upload a document, and talk to the LLM about it

Actual Behavior:

The upload fails with the mentioned error message and the LLM describes the context as "empty"

Description

Bug Summary:
Document uploading seems to be broken in 0.5.17

Reproduction Details

Steps to Reproduce:

  1. Upload a document
  2. Ask a question about the document

Logs and Screenshots

Docker Container Logs:

2025-02-27 18:58:41.152 | ERROR    | open_webui.routers.retrieval:process_file:1071 - cannot reshape array of size 305 into shape (143,149,newaxis) - {}
Traceback (most recent call last):

  File "/usr/local/lib/python3.11/threading.py", line 1002, in _bootstrap
    self._bootstrap_inner()
    │    └ <function Thread._bootstrap_inner at 0x7fc09f108860>
    └ <WorkerThread(AnyIO worker thread, started 140462719485632)>
  File "/usr/local/lib/python3.11/threading.py", line 1045, in _bootstrap_inner
    self.run()
    │    └ <function WorkerThread.run at 0x7fc030ae39c0>
    └ <WorkerThread(AnyIO worker thread, started 140462719485632)>
  File "/usr/local/lib/python3.11/site-packages/anyio/_backends/_asyncio.py", line 962, in run
    result = context.run(func, *args)
             │       │   │      └ ()
             │       │   └ functools.partial(<function upload_file at 0x7fc0708b2a20>, user=UserModel(id='a01008c6-8c99-4aeb-b745-8cd05a73fe5e', name='D...
             │       └ <method 'run' of '_contextvars.Context' objects>
             └ <_contextvars.Context object at 0x7fc0239bab80>

  File "/app/backend/open_webui/routers/files.py", line 85, in upload_file
    process_file(request, ProcessFileForm(file_id=id), user=user)
    │            │        │                       │         └ UserModel(id='a01008c6-8c99-4aeb-b745-8cd05a73fe5e', name='Dennis Field', email='xxx@xxx.xxx', role='admin', profi...
    │            │        │                       └ 'a1895536-03ae-45f3-9fbd-e64019215242'
    │            │        └ <class 'open_webui.routers.retrieval.ProcessFileForm'>
    │            └ <starlette.requests.Request object at 0x7fc0220ed410>
    └ <function process_file at 0x7fc06d4c0180>

> File "/app/backend/open_webui/routers/retrieval.py", line 990, in process_file
    docs = loader.load(
           │      └ <function Loader.load at 0x7fc06e3428e0>
           └ <open_webui.retrieval.loaders.main.Loader object at 0x7fc06d707790>

  File "/app/backend/open_webui/retrieval/loaders/main.py", line 129, in load
    docs = loader.load()
           │      └ <function BaseLoader.load at 0x7fc06e54c9a0>
           └ <langchain_community.document_loaders.pdf.PyPDFLoader object at 0x7fc023b81c50>

  File "/usr/local/lib/python3.11/site-packages/langchain_core/document_loaders/base.py", line 31, in load
    return list(self.lazy_load())
                │    └ <function PyPDFLoader.lazy_load at 0x7fc06e59f6a0>
                └ <langchain_community.document_loaders.pdf.PyPDFLoader object at 0x7fc023b81c50>
  File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/pdf.py", line 257, in lazy_load
    yield from self.parser.parse(blob)
               │    │      │     └ Blob 140464459498672 /app/backend/data/uploads/a1895536-03ae-45f3-9fbd-e64019215242_filename.pdf
               │    │      └ <function BaseBlobParser.parse at 0x7fc06e54cd60>
               │    └ <langchain_community.document_loaders.parsers.pdf.PyPDFParser object at 0x7fc023b83d10>
               └ <langchain_community.document_loaders.pdf.PyPDFLoader object at 0x7fc023b81c50>
  File "/usr/local/lib/python3.11/site-packages/langchain_core/document_loaders/base.py", line 126, in parse
    return list(self.lazy_parse(blob))
                │    │          └ Blob 140464459498672 /app/backend/data/uploads/a1895536-03ae-45f3-9fbd-e64019215242_filename.pdf
                │    └ <function PyPDFParser.lazy_parse at 0x7fc06e59e520>
                └ <langchain_community.document_loaders.parsers.pdf.PyPDFParser object at 0x7fc023b83d10>
  File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/parsers/pdf.py", line 125, in lazy_parse
    yield from [
  File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/parsers/pdf.py", line 128, in <listcomp>
    + self._extract_images_from_page(page),
      │    │                         └ {'/Contents': IndirectObject(218, 0, 140463181853840), '/CropBox': [0, 0, 612, 792], '/MediaBox': [0, 0, 612, 792], '/Parent'...
      │    └ <function PyPDFParser._extract_images_from_page at 0x7fc06e59e5c0>
      └ <langchain_community.document_loaders.parsers.pdf.PyPDFParser object at 0x7fc023b83d10>
  File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/parsers/pdf.py", line 147, in _extract_images_from_page
    np.frombuffer(xObject[obj].get_data(), dtype=np.uint8).reshape(
    │  │          │       │                      │  └ <class 'numpy.uint8'>
    │  │          │       │                      └ <module 'numpy' from '/usr/local/lib/python3.11/site-packages/numpy/__init__.py'>
    │  │          │       └ '/Im0'
    │  │          └ {'/Fm0': IndirectObject(376, 0, 140463181853840), '/Im0': IndirectObject(220, 0, 140463181853840)}
    │  └ <built-in function frombuffer>
    └ <module 'numpy' from '/usr/local/lib/python3.11/site-packages/numpy/__init__.py'>

ValueError: cannot reshape array of size 305 into shape (143,149,newaxis)
2025-02-27 18:58:41.154 | ERROR    | open_webui.routers.files:upload_file:89 - 400: cannot reshape array of size 305 into shape (143,149,newaxis) - {}
Traceback (most recent call last):

  File "/app/backend/open_webui/routers/retrieval.py", line 990, in process_file
    docs = loader.load(
           │      └ <function Loader.load at 0x7fc06e3428e0>
           └ <open_webui.retrieval.loaders.main.Loader object at 0x7fc06d707790>

  File "/app/backend/open_webui/retrieval/loaders/main.py", line 129, in load
    docs = loader.load()
           │      └ <function BaseLoader.load at 0x7fc06e54c9a0>
           └ <langchain_community.document_loaders.pdf.PyPDFLoader object at 0x7fc023b81c50>

  File "/usr/local/lib/python3.11/site-packages/langchain_core/document_loaders/base.py", line 31, in load
    return list(self.lazy_load())
                │    └ <function PyPDFLoader.lazy_load at 0x7fc06e59f6a0>
                └ <langchain_community.document_loaders.pdf.PyPDFLoader object at 0x7fc023b81c50>
  File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/pdf.py", line 257, in lazy_load
    yield from self.parser.parse(blob)
               │    │      │     └ Blob 140464459498672 /app/backend/data/uploads/a1895536-03ae-45f3-9fbd-e64019215242_filename.pdf
               │    │      └ <function BaseBlobParser.parse at 0x7fc06e54cd60>
               │    └ <langchain_community.document_loaders.parsers.pdf.PyPDFParser object at 0x7fc023b83d10>
               └ <langchain_community.document_loaders.pdf.PyPDFLoader object at 0x7fc023b81c50>
  File "/usr/local/lib/python3.11/site-packages/langchain_core/document_loaders/base.py", line 126, in parse
    return list(self.lazy_parse(blob))
                │    │          └ Blob 140464459498672 /app/backend/data/uploads/a1895536-03ae-45f3-9fbd-e64019215242_filename.pdf
                │    └ <function PyPDFParser.lazy_parse at 0x7fc06e59e520>
                └ <langchain_community.document_loaders.parsers.pdf.PyPDFParser object at 0x7fc023b83d10>
  File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/parsers/pdf.py", line 125, in lazy_parse
    yield from [
  File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/parsers/pdf.py", line 128, in <listcomp>
    + self._extract_images_from_page(page),
      │    │                         └ {'/Contents': IndirectObject(218, 0, 140463181853840), '/CropBox': [0, 0, 612, 792], '/MediaBox': [0, 0, 612, 792], '/Parent'...
      │    └ <function PyPDFParser._extract_images_from_page at 0x7fc06e59e5c0>
      └ <langchain_community.document_loaders.parsers.pdf.PyPDFParser object at 0x7fc023b83d10>
  File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/parsers/pdf.py", line 147, in _extract_images_from_page
    np.frombuffer(xObject[obj].get_data(), dtype=np.uint8).reshape(
    │  │          │       │                      │  └ <class 'numpy.uint8'>
    │  │          │       │                      └ <module 'numpy' from '/usr/local/lib/python3.11/site-packages/numpy/__init__.py'>
    │  │          │       └ '/Im0'
    │  │          └ {'/Fm0': IndirectObject(376, 0, 140463181853840), '/Im0': IndirectObject(220, 0, 140463181853840)}
    │  └ <built-in function frombuffer>
    └ <module 'numpy' from '/usr/local/lib/python3.11/site-packages/numpy/__init__.py'>

ValueError: cannot reshape array of size 305 into shape (143,149,newaxis)


During handling of the above exception, another exception occurred:


Traceback (most recent call last):

  File "/usr/local/lib/python3.11/threading.py", line 1002, in _bootstrap
    self._bootstrap_inner()
    │    └ <function Thread._bootstrap_inner at 0x7fc09f108860>
    └ <WorkerThread(AnyIO worker thread, started 140462719485632)>
  File "/usr/local/lib/python3.11/threading.py", line 1045, in _bootstrap_inner
    self.run()
    │    └ <function WorkerThread.run at 0x7fc030ae39c0>
    └ <WorkerThread(AnyIO worker thread, started 140462719485632)>
  File "/usr/local/lib/python3.11/site-packages/anyio/_backends/_asyncio.py", line 962, in run
    result = context.run(func, *args)
             │       │   │      └ ()
             │       │   └ functools.partial(<function upload_file at 0x7fc0708b2a20>, user=UserModel(id='a01008c6-8c99-4aeb-b745-8cd05a73fe5e', name='D...
             │       └ <method 'run' of '_contextvars.Context' objects>
             └ <_contextvars.Context object at 0x7fc0239bab80>

> File "/app/backend/open_webui/routers/files.py", line 85, in upload_file
    process_file(request, ProcessFileForm(file_id=id), user=user)
    │            │        │                       │         └ UserModel(id='a01008c6-8c99-4aeb-b745-8cd05a73fe5e', name='Dennis Field', email='xxx@xxx.xxx', role='admin', profi...
    │            │        │                       └ 'a1895536-03ae-45f3-9fbd-e64019215242'
    │            │        └ <class 'open_webui.routers.retrieval.ProcessFileForm'>
    │            └ <starlette.requests.Request object at 0x7fc0220ed410>
    └ <function process_file at 0x7fc06d4c0180>

  File "/app/backend/open_webui/routers/retrieval.py", line 1078, in process_file
    raise HTTPException(
          └ <class 'fastapi.exceptions.HTTPException'>

fastapi.exceptions.HTTPException: 400: cannot reshape array of size 305 into shape (143,149,newaxis)
2025-02-27 18:58:41.157 | ERROR    | open_webui.routers.files:upload_file:90 - Error processing file: a1895536-03ae-45f3-9fbd-e64019215242 - {}
Originally created by @ftab on GitHub (Feb 27, 2025). Original GitHub issue: https://github.com/open-webui/open-webui/issues/10913 ## Installation Method helm ## Environment - **Open WebUI Version:** 0.5.17 - **Ollama (if applicable):** not used (it's talking to LM Studio instead) - **Operating System:** Debian - **Browser (if applicable):** Brave **Confirmation:** - [x] I have read and followed all the instructions provided in the README.md. - [x] I am on the latest version of both Open WebUI and Ollama. - [ ] I have included the browser console logs. - [x] I have included the Docker container logs. - [x] I have provided the exact steps to reproduce the bug in the "Steps to Reproduce" section below. ## Expected Behavior: Can upload a document, and talk to the LLM about it ## Actual Behavior: The upload fails with the mentioned error message and the LLM describes the context as "empty" ## Description **Bug Summary:** Document uploading seems to be broken in 0.5.17 ## Reproduction Details **Steps to Reproduce:** 1. Upload a document 2. Ask a question about the document ## Logs and Screenshots **Docker Container Logs:** ``` 2025-02-27 18:58:41.152 | ERROR | open_webui.routers.retrieval:process_file:1071 - cannot reshape array of size 305 into shape (143,149,newaxis) - {} Traceback (most recent call last): File "/usr/local/lib/python3.11/threading.py", line 1002, in _bootstrap self._bootstrap_inner() │ └ <function Thread._bootstrap_inner at 0x7fc09f108860> └ <WorkerThread(AnyIO worker thread, started 140462719485632)> File "/usr/local/lib/python3.11/threading.py", line 1045, in _bootstrap_inner self.run() │ └ <function WorkerThread.run at 0x7fc030ae39c0> └ <WorkerThread(AnyIO worker thread, started 140462719485632)> File "/usr/local/lib/python3.11/site-packages/anyio/_backends/_asyncio.py", line 962, in run result = context.run(func, *args) │ │ │ └ () │ │ └ functools.partial(<function upload_file at 0x7fc0708b2a20>, user=UserModel(id='a01008c6-8c99-4aeb-b745-8cd05a73fe5e', name='D... │ └ <method 'run' of '_contextvars.Context' objects> └ <_contextvars.Context object at 0x7fc0239bab80> File "/app/backend/open_webui/routers/files.py", line 85, in upload_file process_file(request, ProcessFileForm(file_id=id), user=user) │ │ │ │ └ UserModel(id='a01008c6-8c99-4aeb-b745-8cd05a73fe5e', name='Dennis Field', email='xxx@xxx.xxx', role='admin', profi... │ │ │ └ 'a1895536-03ae-45f3-9fbd-e64019215242' │ │ └ <class 'open_webui.routers.retrieval.ProcessFileForm'> │ └ <starlette.requests.Request object at 0x7fc0220ed410> └ <function process_file at 0x7fc06d4c0180> > File "/app/backend/open_webui/routers/retrieval.py", line 990, in process_file docs = loader.load( │ └ <function Loader.load at 0x7fc06e3428e0> └ <open_webui.retrieval.loaders.main.Loader object at 0x7fc06d707790> File "/app/backend/open_webui/retrieval/loaders/main.py", line 129, in load docs = loader.load() │ └ <function BaseLoader.load at 0x7fc06e54c9a0> └ <langchain_community.document_loaders.pdf.PyPDFLoader object at 0x7fc023b81c50> File "/usr/local/lib/python3.11/site-packages/langchain_core/document_loaders/base.py", line 31, in load return list(self.lazy_load()) │ └ <function PyPDFLoader.lazy_load at 0x7fc06e59f6a0> └ <langchain_community.document_loaders.pdf.PyPDFLoader object at 0x7fc023b81c50> File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/pdf.py", line 257, in lazy_load yield from self.parser.parse(blob) │ │ │ └ Blob 140464459498672 /app/backend/data/uploads/a1895536-03ae-45f3-9fbd-e64019215242_filename.pdf │ │ └ <function BaseBlobParser.parse at 0x7fc06e54cd60> │ └ <langchain_community.document_loaders.parsers.pdf.PyPDFParser object at 0x7fc023b83d10> └ <langchain_community.document_loaders.pdf.PyPDFLoader object at 0x7fc023b81c50> File "/usr/local/lib/python3.11/site-packages/langchain_core/document_loaders/base.py", line 126, in parse return list(self.lazy_parse(blob)) │ │ └ Blob 140464459498672 /app/backend/data/uploads/a1895536-03ae-45f3-9fbd-e64019215242_filename.pdf │ └ <function PyPDFParser.lazy_parse at 0x7fc06e59e520> └ <langchain_community.document_loaders.parsers.pdf.PyPDFParser object at 0x7fc023b83d10> File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/parsers/pdf.py", line 125, in lazy_parse yield from [ File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/parsers/pdf.py", line 128, in <listcomp> + self._extract_images_from_page(page), │ │ └ {'/Contents': IndirectObject(218, 0, 140463181853840), '/CropBox': [0, 0, 612, 792], '/MediaBox': [0, 0, 612, 792], '/Parent'... │ └ <function PyPDFParser._extract_images_from_page at 0x7fc06e59e5c0> └ <langchain_community.document_loaders.parsers.pdf.PyPDFParser object at 0x7fc023b83d10> File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/parsers/pdf.py", line 147, in _extract_images_from_page np.frombuffer(xObject[obj].get_data(), dtype=np.uint8).reshape( │ │ │ │ │ └ <class 'numpy.uint8'> │ │ │ │ └ <module 'numpy' from '/usr/local/lib/python3.11/site-packages/numpy/__init__.py'> │ │ │ └ '/Im0' │ │ └ {'/Fm0': IndirectObject(376, 0, 140463181853840), '/Im0': IndirectObject(220, 0, 140463181853840)} │ └ <built-in function frombuffer> └ <module 'numpy' from '/usr/local/lib/python3.11/site-packages/numpy/__init__.py'> ValueError: cannot reshape array of size 305 into shape (143,149,newaxis) 2025-02-27 18:58:41.154 | ERROR | open_webui.routers.files:upload_file:89 - 400: cannot reshape array of size 305 into shape (143,149,newaxis) - {} Traceback (most recent call last): File "/app/backend/open_webui/routers/retrieval.py", line 990, in process_file docs = loader.load( │ └ <function Loader.load at 0x7fc06e3428e0> └ <open_webui.retrieval.loaders.main.Loader object at 0x7fc06d707790> File "/app/backend/open_webui/retrieval/loaders/main.py", line 129, in load docs = loader.load() │ └ <function BaseLoader.load at 0x7fc06e54c9a0> └ <langchain_community.document_loaders.pdf.PyPDFLoader object at 0x7fc023b81c50> File "/usr/local/lib/python3.11/site-packages/langchain_core/document_loaders/base.py", line 31, in load return list(self.lazy_load()) │ └ <function PyPDFLoader.lazy_load at 0x7fc06e59f6a0> └ <langchain_community.document_loaders.pdf.PyPDFLoader object at 0x7fc023b81c50> File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/pdf.py", line 257, in lazy_load yield from self.parser.parse(blob) │ │ │ └ Blob 140464459498672 /app/backend/data/uploads/a1895536-03ae-45f3-9fbd-e64019215242_filename.pdf │ │ └ <function BaseBlobParser.parse at 0x7fc06e54cd60> │ └ <langchain_community.document_loaders.parsers.pdf.PyPDFParser object at 0x7fc023b83d10> └ <langchain_community.document_loaders.pdf.PyPDFLoader object at 0x7fc023b81c50> File "/usr/local/lib/python3.11/site-packages/langchain_core/document_loaders/base.py", line 126, in parse return list(self.lazy_parse(blob)) │ │ └ Blob 140464459498672 /app/backend/data/uploads/a1895536-03ae-45f3-9fbd-e64019215242_filename.pdf │ └ <function PyPDFParser.lazy_parse at 0x7fc06e59e520> └ <langchain_community.document_loaders.parsers.pdf.PyPDFParser object at 0x7fc023b83d10> File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/parsers/pdf.py", line 125, in lazy_parse yield from [ File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/parsers/pdf.py", line 128, in <listcomp> + self._extract_images_from_page(page), │ │ └ {'/Contents': IndirectObject(218, 0, 140463181853840), '/CropBox': [0, 0, 612, 792], '/MediaBox': [0, 0, 612, 792], '/Parent'... │ └ <function PyPDFParser._extract_images_from_page at 0x7fc06e59e5c0> └ <langchain_community.document_loaders.parsers.pdf.PyPDFParser object at 0x7fc023b83d10> File "/usr/local/lib/python3.11/site-packages/langchain_community/document_loaders/parsers/pdf.py", line 147, in _extract_images_from_page np.frombuffer(xObject[obj].get_data(), dtype=np.uint8).reshape( │ │ │ │ │ └ <class 'numpy.uint8'> │ │ │ │ └ <module 'numpy' from '/usr/local/lib/python3.11/site-packages/numpy/__init__.py'> │ │ │ └ '/Im0' │ │ └ {'/Fm0': IndirectObject(376, 0, 140463181853840), '/Im0': IndirectObject(220, 0, 140463181853840)} │ └ <built-in function frombuffer> └ <module 'numpy' from '/usr/local/lib/python3.11/site-packages/numpy/__init__.py'> ValueError: cannot reshape array of size 305 into shape (143,149,newaxis) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/local/lib/python3.11/threading.py", line 1002, in _bootstrap self._bootstrap_inner() │ └ <function Thread._bootstrap_inner at 0x7fc09f108860> └ <WorkerThread(AnyIO worker thread, started 140462719485632)> File "/usr/local/lib/python3.11/threading.py", line 1045, in _bootstrap_inner self.run() │ └ <function WorkerThread.run at 0x7fc030ae39c0> └ <WorkerThread(AnyIO worker thread, started 140462719485632)> File "/usr/local/lib/python3.11/site-packages/anyio/_backends/_asyncio.py", line 962, in run result = context.run(func, *args) │ │ │ └ () │ │ └ functools.partial(<function upload_file at 0x7fc0708b2a20>, user=UserModel(id='a01008c6-8c99-4aeb-b745-8cd05a73fe5e', name='D... │ └ <method 'run' of '_contextvars.Context' objects> └ <_contextvars.Context object at 0x7fc0239bab80> > File "/app/backend/open_webui/routers/files.py", line 85, in upload_file process_file(request, ProcessFileForm(file_id=id), user=user) │ │ │ │ └ UserModel(id='a01008c6-8c99-4aeb-b745-8cd05a73fe5e', name='Dennis Field', email='xxx@xxx.xxx', role='admin', profi... │ │ │ └ 'a1895536-03ae-45f3-9fbd-e64019215242' │ │ └ <class 'open_webui.routers.retrieval.ProcessFileForm'> │ └ <starlette.requests.Request object at 0x7fc0220ed410> └ <function process_file at 0x7fc06d4c0180> File "/app/backend/open_webui/routers/retrieval.py", line 1078, in process_file raise HTTPException( └ <class 'fastapi.exceptions.HTTPException'> fastapi.exceptions.HTTPException: 400: cannot reshape array of size 305 into shape (143,149,newaxis) 2025-02-27 18:58:41.157 | ERROR | open_webui.routers.files:upload_file:90 - Error processing file: a1895536-03ae-45f3-9fbd-e64019215242 - {} ```
Author
Owner

@tjbck commented on GitHub (Feb 27, 2025):

If you change your embedding model you need to reset your vector db.

<!-- gh-comment-id:2688933169 --> @tjbck commented on GitHub (Feb 27, 2025): If you change your embedding model you need to reset your vector db.
Author
Owner

@ftab commented on GitHub (Feb 27, 2025):

I didn't change it, still using the default of "sentence-transformers/all-MiniLM-L6-v2". I tried to reset it. Problem persists.

<!-- gh-comment-id:2688960017 --> @ftab commented on GitHub (Feb 27, 2025): I didn't change it, still using the default of "sentence-transformers/all-MiniLM-L6-v2". I tried to reset it. Problem persists.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#86819