forked from topoteretes/ai-memory-hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (20 loc) · 883 Bytes
/
.env.example
File metadata and controls
23 lines (20 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Qdrant Cloud
QDRANT_URL=https://your-cluster.cloud.qdrant.io
QDRANT_API_KEY=6a69bbaf-0d1c-40cf-8ed2-ee7306d60e3f|XEV7MwMAUv-wxbjoyiujoSzXVptLQiOg2OaHtFKXe_80el1sBDRXGA
# LLM mode: "local" (GGUF via llama-cpp) or "remote" (OpenAI-compatible API)
LLM_MODE=local
# Remote LLM settings (only needed when LLM_MODE=remote)
LLM_API_URL=<your-llm-api-url>
LLM_API_KEY=<your-llm-api-key>
LLM_MODEL_NAME=distil-labs-slm
# Embedding mode: "local" (GGUF) or "remote" (OpenAI-compatible API)
EMBED_MODE=local
# Remote embedding settings (only needed when EMBED_MODE=remote)
EMBED_API_URL=<your-embed-api-url>
EMBED_API_KEY=<your-embed-api-key>
EMBED_MODEL_NAME=nomic-embed-text
# DO Spaces (optional, for hosting snapshots/models)
SPACES_ENDPOINT=https://nyc3.digitaloceanspaces.com
SPACES_BUCKET=<your-bucket-name>
SPACES_KEY=<your-spaces-access-key>
SPACES_SECRET=<your-spaces-secret-key>