Merge pull request #116 from vitaliytv/patch-1

DOCS: Update web_search.md
This commit is contained in:
Timothy Jaeryang Baek 2024-06-13 12:07:58 -07:00 committed by GitHub
commit 1dcb437e4a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -176,3 +176,19 @@ This is enabled on a per session basis eg. reloading the page, changing to anoth
## Serpstack API ## Serpstack API
## Brave API ## Brave API
### Docker Compose Setup
Add the following to a file named `docker-compose.yaml`:
```yaml
services:
open-webui:
environment:
ENABLE_RAG_WEB_SEARCH: True
RAG_WEB_SEARCH_ENGINE: "brave"
BRAVE_SEARCH_API_KEY: "YOUR_API_KEY"
RAG_WEB_SEARCH_RESULT_COUNT: 3
RAG_WEB_SEARCH_CONCURRENT_REQUESTS: 10
```