Spaces:
Sleeping
Sleeping
Add .env.example
Browse files- .env.example +23 -0
.env.example
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ViralClipFactory Environment Variables
|
| 2 |
+
# Copy this to .env and fill in your API keys
|
| 3 |
+
|
| 4 |
+
# Claude LLM for scripts + titles (required for AI generation)
|
| 5 |
+
ANTHROPIC_API_KEY=sk-ant-...
|
| 6 |
+
|
| 7 |
+
# Text-to-speech voiceover (optional - falls back to edge-tts)
|
| 8 |
+
ELEVENLABS_API_KEY=
|
| 9 |
+
|
| 10 |
+
# Stock images + video (optional - generates placeholder gradients without)
|
| 11 |
+
PEXELS_API_KEY=
|
| 12 |
+
|
| 13 |
+
# Alternative stock images (optional)
|
| 14 |
+
UNSPLASH_ACCESS_KEY=
|
| 15 |
+
|
| 16 |
+
# Whisper model size: tiny, base, small, medium, large-v3
|
| 17 |
+
WHISPER_MODEL=base
|
| 18 |
+
|
| 19 |
+
# Whisper device: cpu or cuda
|
| 20 |
+
WHISPER_DEVICE=cpu
|
| 21 |
+
|
| 22 |
+
# Temp directory for processing
|
| 23 |
+
TEMP_DIR=/tmp/viralclipfactory
|