-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (23 loc) · 1.17 KB
/
Copy path.env.example
File metadata and controls
28 lines (23 loc) · 1.17 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
# Copy to `.env` and replace placeholder values.
# ── Docker image pins ───────────────────────────────────────────────
AMS_IMAGE_TAG=0.15.2
REDIS_IMAGE_TAG=8.6.2
# ── Backend (FastAPI) ───────────────────────────────────────────────
# https://console.anthropic.com/settings/keys
ANTHROPIC_API_KEY=your-anthropic-api-key
ANTHROPIC_MODEL=claude-haiku-4-5
MAX_TOKENS=1024
DEFAULT_LONG_TERM_USER_ID=default-user
PREFER_AMS_LONG_TERM_SEARCH=true
ENABLE_DISCRETE_MEMORY_EXTRACTION=true
# ── Agent Memory Server ────────────────────────────────────────────
# Generation models used by AMS background discrete extraction.
GENERATION_MODEL=gpt-4o
FAST_MODEL=gpt-4o-mini
# OpenAI embeddings power AMS long-term semantic retrieval.
# https://platform.openai.com/api-keys
OPENAI_API_KEY=your-openai-api-key
EMBEDDING_MODEL=text-embedding-3-small
REDISVL_VECTOR_DIMENSIONS=1536
LONG_TERM_MEMORY=true
DISABLE_AUTH=true