Add websearch to open-webui.
This commit is contained in:
parent
18196d4a64
commit
826d7f5c23
1 changed files with 12 additions and 0 deletions
|
@ -14,6 +14,8 @@ spec:
|
||||||
kind: HelmRepository
|
kind: HelmRepository
|
||||||
name: bjw-s
|
name: bjw-s
|
||||||
namespace: flux-system
|
namespace: flux-system
|
||||||
|
dependsOn:
|
||||||
|
- name: ollama
|
||||||
install:
|
install:
|
||||||
remediation:
|
remediation:
|
||||||
retries: 3
|
retries: 3
|
||||||
|
@ -35,6 +37,16 @@ spec:
|
||||||
env:
|
env:
|
||||||
- name: OLLAMA_BASE_URL
|
- name: OLLAMA_BASE_URL
|
||||||
value: http://ollama.ai.svc.cluster.local:11434
|
value: http://ollama.ai.svc.cluster.local:11434
|
||||||
|
- name: ENABLE_RAG_WEB_SEARCH
|
||||||
|
value: true
|
||||||
|
- name: RAG_WEB_SEARCH_ENGINE
|
||||||
|
value: searxng
|
||||||
|
- name: RAG_WEB_SEARCH_RESULT_COUNT
|
||||||
|
value: 3
|
||||||
|
- name: RAG_WEB_SEARCH_CONCURRENT_REQUESTS
|
||||||
|
value: 10
|
||||||
|
- name: RAG_WEB_SEARCH_QUERY_URL
|
||||||
|
value: http://searxng.default.svc.cluster.local:8080/search?q=<query>
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: 500m
|
cpu: 500m
|
||||||
|
|
Loading…
Reference in a new issue