-
Notifications
You must be signed in to change notification settings - Fork 638
Expand file tree
/
Copy path.env.example
More file actions
25 lines (22 loc) · 1.01 KB
/
.env.example
File metadata and controls
25 lines (22 loc) · 1.01 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
# ─── Embedding API ───
# Use any OpenAI-compatible embedding service, or leave blank for local offline model (Xenova/all-MiniLM-L6-v2)
EMBEDDING_PROVIDER=openai_compatible
EMBEDDING_API_KEY=your-embedding-api-key
EMBEDDING_ENDPOINT=https://your-embedding-api.com/v1
EMBEDDING_MODEL=bge-m3
# ─── Summarizer API ───
# OpenAI-compatible LLM for one-sentence chunk summaries
# Leave blank to use rule-based fallback (no LLM needed)
SUMMARIZER_PROVIDER=openai_compatible
SUMMARIZER_API_KEY=your-summarizer-api-key
SUMMARIZER_ENDPOINT=https://api.openai.com/v1
SUMMARIZER_MODEL=gpt-4o-mini
SUMMARIZER_TEMPERATURE=0
# ─── Memory Viewer ───
# Port for the web-based Memory Viewer (default: 18799)
# VIEWER_PORT=18799
# ─── Telemetry (opt-out) ───
# Anonymous usage analytics to help improve the plugin.
# No memory content, queries, or personal data is ever sent — only tool names, latencies, and version info.
# Enabled by default. Set to false to opt-out.
# TELEMETRY_ENABLED=false