mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-15 21:19:39 -05:00
[GH-ISSUE #7591] websearch empty results #14807
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 @unicorn667 on GitHub (Dec 4, 2024).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/7591
Installation Method
Docker compose installation using official image ghcr.io/open-webui/open-webui:main
Environment
Confirmation:
Expected Behavior:
Web search functionality should work with configured search backend (Bing).
Actual Behavior:
Web search returns empty content error:
Description
Bug Summary:
Web search functionality fails with empty content error when using Bing as search backend. The error occurs consistently across different search queries.
Reproduction Details
Steps to Reproduce:
Logs and Screenshots
Docker Container Logs:
Additional Information
I have configured the websearch inside the gui and not over the compose file
my docker compose file
Yes I know WEBUI_CHECK_UPDATE is an open point....
`version: '3.8'
services:
postgres:
image: postgres:14.5
container_name: webui-postgres
restart: unless-stopped
environment:
POSTGRES_DB: webui
POSTGRES_USER: webui_user
POSTGRES_PASSWORD: password
POSTGRES_HOST_AUTH_METHOD: trust
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U webui_user -d webui"]
interval: 10s
timeout: 5s
retries: 5
networks:
- proxy-net
open-webui:
image: ghcr.io/open-webui/open-webui:main
container_name: open-webui
restart: unless-stopped
depends_on:
postgres:
condition: service_healthy
ports:
- "3000:8080"
environment:
- OLLAMA_API_BASE_URL=http://host.docker.internal:11434
- DATABASE_URL=postgresql://webui_user:password@postgres:5432/webui
- POSTGRES_HOST=postgres
- POSTGRES_DB=webui
- POSTGRES_USER=webui_user
- POSTGRES_PASSWORD=password
- CORS_ALLOW_ORIGIN=https://myurl
- HOST=0.0.0.0
- PORT=8080
- MICROSOFT_CLIENT_ID=12345456
- MICROSOFT_CLIENT_SECRET=12345456
- MICROSOFT_CLIENT_TENANT_ID=12345456
- OAUTH_PROVIDERS=microsoft
- ENABLE_OAUTH_SIGNUP=true
- BASE_URL=https://myurl
- WEBUI_CHECK_UPDATE=false
- WEBUI_NOTIFY_UPDATE=false
- WEBUI_DISABLE_UPDATE_CHECK=true
- DISABLE_LOCAL_REGISTRATION=true
volumes:
- /srv/docker/openwebui/data:/app/backend/data
extra_hosts:
- "host.docker.internal:host-gateway"
networks:
- proxy-net
volumes:
postgres_data:
name: webui-postgres-data
networks:
proxy-net:
external: True`