Bug Summary:
Using the default SentenceTransformers on board. If I toggle Hybrid Search to On, then add jina reranker (tried both jinaai/jina-reranker-v1-tiny-en and jinaai/jina-reranker-v1-turbo-en), I get a bootloop condition where the docker image continuous tries to load the reranker (I believe). The recommended BAAI/bge-reranker-v2-m3 performs fine, however.
The lower 3 lines are where it always crashes after the initial setting of the model. During each boot I do see INFO [open_webui.env] Reranking model set: jinaai/jina-reranker-v1-turbo-en. To fix I have to open up webui.db and edit the config table's data field to change back the model to BAAI.
INFO [open_webui.apps.retrieval.main] Updating reranking model: BAAI/bge-reranker-v2-m3 to jinaai/jina-reranker-v1-turbo-en
INFO [open_webui.env] Saving 'RAG_RERANKING_MODEL' to the database
Fetching 19 files: 0%| | 0/19 [00:00<?, ?it/s]
Fetching 19 files: 100%|██████████| 19/19 [00:00<00:00, 954.55it/s]
Container stopped
Originally created by @wbste on GitHub (Nov 27, 2024).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/7439
## Environment
- **Open WebUI Version:** [0.4.6] via Docker Compose.
## Description
**Bug Summary:**
Using the default SentenceTransformers on board. If I toggle Hybrid Search to **On**, then add jina reranker (tried both `jinaai/jina-reranker-v1-tiny-en` and `jinaai/jina-reranker-v1-turbo-en`), I get a bootloop condition where the docker image continuous tries to load the reranker (I believe). The recommended `BAAI/bge-reranker-v2-m3` performs fine, however.
The lower 3 lines are where it always crashes after the initial setting of the model. During each boot I do see `INFO [open_webui.env] Reranking model set: jinaai/jina-reranker-v1-turbo-en`. To fix I have to open up `webui.db` and edit the `config` table's `data` field to change back the model to BAAI.
```
INFO [open_webui.apps.retrieval.main] Updating reranking model: BAAI/bge-reranker-v2-m3 to jinaai/jina-reranker-v1-turbo-en
INFO [open_webui.env] Saving 'RAG_RERANKING_MODEL' to the database
Fetching 19 files: 0%| | 0/19 [00:00<?, ?it/s]
Fetching 19 files: 100%|██████████| 19/19 [00:00<00:00, 954.55it/s]
Container stopped
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @wbste on GitHub (Nov 27, 2024).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/7439
Environment
Description
Bug Summary:
Using the default SentenceTransformers on board. If I toggle Hybrid Search to On, then add jina reranker (tried both
jinaai/jina-reranker-v1-tiny-enandjinaai/jina-reranker-v1-turbo-en), I get a bootloop condition where the docker image continuous tries to load the reranker (I believe). The recommendedBAAI/bge-reranker-v2-m3performs fine, however.The lower 3 lines are where it always crashes after the initial setting of the model. During each boot I do see
INFO [open_webui.env] Reranking model set: jinaai/jina-reranker-v1-turbo-en. To fix I have to open upwebui.dband edit theconfigtable'sdatafield to change back the model to BAAI.