-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
44 lines (36 loc) · 1 KB
/
.env.example
File metadata and controls
44 lines (36 loc) · 1 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
44
# YouTube Value Extractor Configuration
# Copy this file to .env and configure your settings
# ===================
# LLM Configuration
# ===================
# Choose one of the following model configurations:
# OpenAI (Recommended)
LLM_MODEL=gpt-4o-mini
OPENAI_API_KEY=sk-your-openai-key-here
# Anthropic Claude
# LLM_MODEL=claude-3-5-sonnet-latest
# ANTHROPIC_API_KEY=sk-ant-api-your-key-here
# Local Ollama (Privacy-focused)
# LLM_MODEL=ollama/llama3.1:8b
# ===================
# Output Configuration
# ===================
DEFAULT_OUTPUT_DIR=./outputs
REPORT_TZ=America/Costa_Rica
# ===================
# Cache Configuration
# ===================
ENABLE_CACHE=true
CACHE_DIR=./.cache
# ===================
# Processing Configuration
# ===================
MAX_CONCURRENT_VIDEOS=3
# ===================
# Whisper Configuration (Optional)
# ===================
# Only needed for videos without YouTube transcripts
# Requires: pip install ".[whisper]"
WHISPER_MODEL=base
WHISPER_DEVICE=auto
WHISPER_COMPUTE_TYPE=float16