-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (38 loc) · 1.26 KB
/
.env.example
File metadata and controls
43 lines (38 loc) · 1.26 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
42
43
# ==========================================
# AWS Configuration
# ==========================================
AWS_REGION=us-west-2
AWS_S3_BUCKET=financial-parser-ohm-2025
# ==========================================
# AWS Secrets Manager Secret Names
# ==========================================
SECRET_OPENAI_KEY=financial-parser/openai-key
SECRET_GEMINI_KEY=financial-parser/gemini-key
SECRET_ENCRYPTION_KEY=financial-parser/encryption-key
# ==========================================
# Local Development ONLY
# ==========================================
# WARNING: Only use these for local testing without AWS
# NEVER commit actual API keys to git!
# Uncomment ONLY for local development:
# OPENAI_API_KEY=sk-proj-...
# GEMINI_API_KEY=AIza...
# ==========================================
# Ray Configuration
# ==========================================
RAY_NUM_CPUS=4
RAY_OBJECT_STORE_MEMORY=2000000000
# ==========================================
# Application Settings
# ==========================================
BATCH_SIZE=100
LOG_LEVEL=INFO
MAX_RETRIES=3
REQUEST_TIMEOUT=30
# ==========================================
# LLM Settings
# ==========================================
GPT_MODEL=gpt-5-nano-2025-08-07
GEMINI_MODEL=gemini-2.5-flash-lite
TEMPERATURE=0.0
MAX_TOKENS=1000