forked from open-webui/open-webui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.openwebui.production
41 lines (35 loc) · 1012 Bytes
/
.env.openwebui.production
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# general
WEBUI_NAME="Utopia"
WEBUI_URL="https://utopia.xyz"
WEBUI_AUTH=True
DEFAULT_MODELS="Meta-Llama-3.1-70B-Instruct"
DEFAULT_USER_ROLE="pending"
USER_PERMISSIONS_CHAT_DELETION=False
ENABLE_COMMUNITY_SHARING=False
ENABLE_MESSAGE_RATING=True
#DATABASE_URL=
# ollama
ENABLE_OLLAMA_API=False
# openai
ENABLE_OPENAI_API=True
OPENAI_API_BASE_URL="http://host.docker.internal:4000/v1"
OPENAI_API_KEY="anything"
# rag
RAG_EMBEDDING_ENGINE="openai"
RAG_OPENAI_API_BASE_URL="http://host.docker.internal:4000/v1"
RAG_OPENAI_API_KEY="anything"
RAG_EMBEDDING_MODEL="intfloat/multilingual-e5-large-instruct"
# web search
ENABLE_RAG_WEB_SEARCH=True
RAG_WEB_SEARCH_ENGINE="brave"
BRAVE_SEARCH_API_KEY=
# image generation
ENABLE_IMAGE_GENERATION=True
IMAGE_GENERATION_ENGINE="openai"
IMAGES_OPENAI_API_BASE_URL="https://api.together.xyz/v1"
IMAGES_OPENAI_API_KEY="anything"
IMAGE_GENERATION_MODEL="black-forest-labs/FLUX.1-schnell-Free"
# telemetry
SCARF_NO_ANALYTICS=true
DO_NOT_TRACK=true
ANONYMIZED_TELEMETRY=false