-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
41 lines (33 loc) · 1.53 KB
/
.env.example
File metadata and controls
41 lines (33 loc) · 1.53 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
39
40
41
# ==============================================================================
# Application Authentication
# ==============================================================================
# Set a password to protect access to the app (leave empty for no auth)
APP_PASSWORD=
# Default organization ID (usually leave as 1)
DEFAULT_ORG_ID=1
# ==============================================================================
# LLM Provider Configuration
# ==============================================================================
# Choose 'openai' or 'anthropic'
LLM_PROVIDER=openai
# API Keys (add your actual keys to .env, never commit .env!)
OPENAI_API_KEY=your_openai_key_here
ANTHROPIC_API_KEY=your_anthropic_key_here
# LLM Model Selection
# OpenAI options: gpt-4, gpt-4-turbo, gpt-3.5-turbo
# Anthropic options: claude-3-5-sonnet-20241022, claude-3-opus-20240229
LLM_MODEL=gpt-4
# Temperature (0.0-1.0, lower = more deterministic)
LLM_TEMPERATURE=0.3
# ==============================================================================
# Rate Limiting (optional)
# ==============================================================================
# Maximum LLM calls per session (prevents runaway costs)
LLM_MAX_CALLS_PER_SESSION=50
# Maximum LLM calls per minute
LLM_MAX_CALLS_PER_MINUTE=10
# ==============================================================================
# Logging Configuration (optional)
# ==============================================================================
# Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
LOG_LEVEL=INFO