Files
open-webui-docs/docs/tutorials/web-search/brave.md
Silentoplayz 6d8a0b1daa Web Search Category
Splits Web Search sections into individual pages within a new category for Web Search
2025-02-10 15:25:19 -05:00

26 lines
674 B
Markdown

---
sidebar_position: 2
title: "Brave"
---
:::warning
This tutorial is a community contribution and is not supported by the Open WebUI team. It serves only as a demonstration on how to customize Open WebUI for your specific use case. Want to contribute? Check out the contributing tutorial.
:::
## Brave API
### Docker Compose Setup
Add the following environment variables to your Open WebUI `docker-compose.yaml` file:
```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
```