-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (25 loc) · 923 Bytes
/
Copy path.env.example
File metadata and controls
29 lines (25 loc) · 923 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
# Local dev (docker compose Postgres on host port 5434)
NODE_ENV=development
PORT=3010
DATABASE_URL=postgres://postgres:postgres@localhost:5434/portf
LOG_LEVEL=info
# SSE pacing + insight exposure (portf shows topic → keep true)
EXPOSE_MATCH_INSIGHTS=true
SSE_DELAY_MODE=token
SSE_DELAY_BASE_MS=30
SSE_DELAY_JITTER_MS=20
# @cosimi retrieval (services/api + admin-api). Prod Worker sets EMBEDDER=workers-ai.
EMBEDDING_DIM=1024
EMBEDDER=ollama
OLLAMA_BASE_URL=http://localhost:11434
OLLAMA_EMBED_MODEL=bge-m3
RETRIEVE_MIN_SIMILARITY=0.45
# admin-api (local ingest console; @cosimi/core env). Loopback only.
ADMIN_HOST=127.0.0.1
ADMIN_PORT=3001
STORAGE_DIR=./.storage
INGEST_GENERATE_MODEL=claude-sonnet-4-6
INGEST_AUDIT_MODEL=claude-haiku-4-5-20251001
# ANTHROPIC_API_KEY is NOT set here — entered in the neolab UI (X-Anthropic-Key).
# Web → api base (vite dev proxy strips /api → :3010)
VITE_PORTF_API_BASE=/api