-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
34 lines (26 loc) · 1.08 KB
/
.env.example
File metadata and controls
34 lines (26 loc) · 1.08 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
# Supabase Configuration (Server-side)
SUPABASE_URL=your-supabase-url
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key
SUPABASE_ANON_KEY=your-anon-key
# Supabase Configuration (Client-side)
NEXT_PUBLIC_SUPABASE_URL=your-supabase-url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key
# Security Configuration
API_RATE_LIMIT=60 # Requests per minute allowed for API routes
# Direct PostgreSQL connection details (optional)
DATABASE_URL=your-postgres-connection-string
# OpenAI Configuration
OPENAI_API_KEY=your-openai-key
# Anthropic API Configuration
ANTHROPIC_API_KEY=your-anthropic-key
# LLM Configuration
DEFAULT_LLM_PROVIDER=anthropic # anthropic or openai
DEFAULT_LLM_MODEL=claude-3-sonnet # claude-3-sonnet, claude-3-opus, claude-3-haiku, gpt-4-turbo, gpt-4o
DEFAULT_TEMPERATURE=0.7 # Value between 0 and 1
# Reddit API Configuration (optional, for data collection)
REDDIT_CLIENT_ID=your-reddit-client-id
REDDIT_CLIENT_SECRET=your-reddit-client-secret
REDDIT_USERNAME=your-reddit-username
REDDIT_PASSWORD=your-reddit-password
# Logging Configuration (optional)
LOG_LEVEL=info # debug, info, warn, error