File size: 953 Bytes
02ad302
 
 
 
 
 
1384ff1
 
 
 
 
 
02ad302
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# VideoVoice — Environment Variables
# Copy this to .env and fill in values

# Server port (default 8000)
PORT=8000

# Where per-job artifact folders get written. On HF Spaces this is resolved
# automatically (/data/jobs with persistent storage, /tmp/videovoice_jobs
# without). For local dev, set this to ./data so jobs land next to the repo
# — same layout the old `main` used.
ARTIFACTS_ROOT=./data

# OpenAI API key (for translation step)
OPENAI_API_KEY=sk-...

# Pollinations API key (optional, for Whisper transcription fallback)
POLLINATIONS_API_KEY=
POLLEN_TRANSCRIBE_MODEL=whisper-large-v3
POLLEN_MODEL=gemini-search

# Stripe (optional, for paid tiers)
STRIPE_PUBLISHABLE_KEY=
STRIPE_SECRET_KEY=

# AWS S3 (optional, for cloud storage)
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_S3_BUCKET=
AWS_REGION=us-east-1

# AWS Bedrock (optional, fallback translator for Urdu)
AWS_BEDROCK_API_KEY=
BEDROCK_MODEL=qwen.qwen3-next-80b-a3b

HF_TOKEN=