-
Notifications
You must be signed in to change notification settings - Fork 433
/
.env.example
40 lines (31 loc) · 819 Bytes
/
.env.example
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
DISABLE_VERCEL_ANALYTICS=false
DATABASE_URL=file:../../chatollama.sqlite
# Chat-ollama server's port
PORT=3000
HOST=
OPENAI_API_KEY=
LANGCHAIN_TRACING_V2=false
LANGCHAIN_API_KEY=
LANGCHAIN_PROJECT=chat-ollama
REDIS_HOST=
MOONSHOT_API_KEY=
# Supported values: chroma, milvus
VECTOR_STORE=chroma
CHROMADB_URL=http://localhost:8000
MILVUS_URL=http://localhost:19530
# Cohere API Key - Reranking
COHERE_API_KEY=
COHERE_MODEL=
COHERE_BASE_URL=
# Super admin name
SUPER_ADMIN_NAME=
# API model proxy
NUXT_PUBLIC_MODEL_PROXY_ENABLED=false
# HTTP / HTTPS / SOCKS4 / SOCKS5 protocols are supported, e.g.
# http://127.0.0.1:1080
# socks5://127.0.0.1:1080
# http://username:password@127.0.0.1:1080
# socks5://username:password@127.0.0.1:1080
NUXT_MODEL_PROXY_URL=
# Chat
NUXT_PUBLIC_CHAT_MAX_ATTACHED_MESSAGES=50