-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.bak
More file actions
36 lines (27 loc) · 811 Bytes
/
.env.bak
File metadata and controls
36 lines (27 loc) · 811 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
# API Keys
# Groq API (RECOMMENDED - 100x cheaper than OpenAI, 10-50x faster)
# Get your key at: https://console.groq.com/
GROQ_API_KEY=gsk_your_groq_api_key_here
# OpenAI API (Optional fallback, not recommended for production)
OPENAI_API_KEY=sk-your-openai-api-key-here
# Database URLs (using Docker services)
QDRANT_URL=http://localhost:6333
REDIS_URL=redis://localhost:6379
DATABASE_URL=postgresql://admin:secret123@localhost:5432/videorecommender
# Feature Store
FEATURE_STORE_PATH=data/feature_store
# Model Settings
EMBEDDING_DIM=256
BATCH_SIZE=32
MAX_FRAMES=16
# Tagging Settings
CONFIDENCE_THRESHOLD=0.3
# Recommendation Settings
NUM_CANDIDATES=100
NUM_RECOMMENDATIONS=5
DIVERSITY_FACTOR=0.15
# Content Moderation
NSFW_THRESHOLD=0.5
VIOLENCE_THRESHOLD=0.5
# Environment
ENVIRONMENT=development