-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (37 loc) · 997 Bytes
/
Copy path.env.example
File metadata and controls
42 lines (37 loc) · 997 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
30
31
32
33
34
35
36
37
38
39
40
41
42
# Shared
NODE_ENV=development
# Database
DATABASE_URL=postgres://raglens:raglens@localhost:5432/raglens
POSTGRES_USER=raglens
POSTGRES_PASSWORD=raglens
POSTGRES_DB=raglens
# Services
RAG_API_PORT=8000
EVAL_API_PORT=8001
DASHBOARD_PORT=3000
RAG_API_BASE_URL=http://localhost:8000
EVAL_API_BASE_URL=http://localhost:8001
# Eval runtime
EVAL_REPOSITORY=postgres
RAG_CLIENT_MODE=http
RAG_API_TIMEOUT_SECONDS=10
RAG_API_MAX_RETRIES=2
# RAG query runtime
ANSWER_PROVIDER=deterministic
ANSWER_MODEL=
ANSWER_INPUT_COST_PER_1M_TOKENS=
ANSWER_OUTPUT_COST_PER_1M_TOKENS=
ANSWER_PROVIDER_TIMEOUT_MS=10000
EMBEDDING_PROVIDER=ollama
EMBEDDING_MODEL=nomic-embed-text
EMBEDDING_TIMEOUT_MS=10000
PROMPT_CONTEXT_TOKEN_BUDGET=1200
RERANKER_PROVIDER=deterministic
OPENAI_BASE_URL=https://api.openai.com/v1
ANTHROPIC_BASE_URL=https://api.anthropic.com/v1
OPENROUTER_BASE_URL=https://openrouter.ai/api/v1
OLLAMA_BASE_URL=http://localhost:11434/v1
# Providers
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
OPENROUTER_API_KEY=