-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy path.env.example
More file actions
38 lines (33 loc) · 1.24 KB
/
.env.example
File metadata and controls
38 lines (33 loc) · 1.24 KB
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
# ==============================================
# OpenZep Configuration
# ==============================================
# --- LLM (required) ---
# Any OpenAI-compatible API: SiliconFlow, OpenAI, local Ollama proxy, etc.
# If OpenZep runs in Docker and your gateway/proxy is on the host machine,
# use http://host.docker.internal:PORT/v1 instead of localhost / 127.0.0.1.
LLM_API_KEY=your-api-key
LLM_BASE_URL=https://api.siliconflow.cn/v1
LLM_MODEL=Qwen/Qwen2.5-72B-Instruct
LLM_SMALL_MODEL=Qwen/Qwen2.5-7B-Instruct
# --- Embedder (optional) ---
# If your LLM provider supports embeddings (SiliconFlow, OpenAI, Ollama),
# leave these blank and they will reuse LLM_API_KEY / LLM_BASE_URL.
#
# If you use Anthropic Claude directly (no embedding support),
# set a separate embedding provider here.
# The same Docker note applies here: prefer host.docker.internal over localhost.
#
# EMBEDDER_API_KEY=
# EMBEDDER_BASE_URL=
EMBEDDER_MODEL=BAAI/bge-m3
# --- Graph DB ---
GRAPH_DB=neo4j
NEO4J_URI=bolt://neo4j:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=password123
# --- SQLite ---
SQLITE_PATH=openzep.db
# --- Auth (optional) ---
# If set, all API calls must include: Authorization: Bearer <API_KEY>
# Leave empty to disable authentication.
# API_KEY=your-openzep-api-key