diff --git a/docs/tutorial/web_search.md b/docs/tutorial/web_search.md index e6dbaa4..35c0d4d 100644 --- a/docs/tutorial/web_search.md +++ b/docs/tutorial/web_search.md @@ -117,8 +117,10 @@ Add the following to a file named `docker-compose.searxng.yaml` alongside your e services: open-webui: environment: + ENABLE_RAG_WEB_SEARCH: True + RAG_WEB_SEARCH_ENGINE: "searxng" RAG_WEB_SEARCH_RESULT_COUNT: 3 - RAG_WEB_SEARCH_CONCURRENT_REQUESTS: 3 + RAG_WEB_SEARCH_CONCURRENT_REQUESTS: 10 SEARXNG_QUERY_URL: "http://searxng:8080/search?q=" searxng: @@ -145,6 +147,11 @@ You can run SearXNG directly using `docker run`: docker run -d --name searxng -p 8080:8080 -v ./searxng:/etc/searxng --restart always searxng/searxng:latest ``` +### 4. GUI configuration + +Navigate to **Workspace > Documents > Document Settings > Web Params**: +![SearXNG GUI Configuration](/img/tutorial_searxng_config.png) + ## Google PSE API ## Serper API diff --git a/static/img/tutorial_searxng_config.png b/static/img/tutorial_searxng_config.png new file mode 100644 index 0000000..fbe465a Binary files /dev/null and b/static/img/tutorial_searxng_config.png differ