forked from nickthecook/archyve
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdotenv_template
More file actions
31 lines (31 loc) · 798 Bytes
/
dotenv_template
File metadata and controls
31 lines (31 loc) · 798 Bytes
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
DATABASE_URL=postgres://archyve:password@postgres:5432/archyve?sslmode=disable
REDIS_URL=redis://redis:6379
SECRET_KEY_BASE=# run `openssl rand -hex 64` to generate this value
CHROMADB_HOST=chromadb
CHROMADB_PORT=8000
NEO4J_URL="neo4j://neo4j:7687"
NEO4J_USERNAME=neo4j
NEO4J_PASSWORD=password
USERNAME=admin@archyve.io
PASSWORD=password
PROVISIONED_MODEL_SERVERS="[
{
\"name\": \"ollama\",
\"url\": \"http://host.docker.internal:11434\",
\"provider\": \"ollama\"
}
]"
PROVISIONED_MODEL_CONFIGS="[
{
\"name\": \"llama3.1:8b\",
\"model\": \"llama3.1:8b\",
\"temperature\": 0.1
},
{
\"name\": \"nomic-embed-text\",
\"model\": \"nomic-embed-text\",
\"embedding\": true
}
]"
LLM_JOBS_CONCURRENCY=5
ALLOWED_HOSTS=[\"localhost\", \"host.docker.internal\"]