-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.template
More file actions
executable file
·59 lines (44 loc) · 1.9 KB
/
Copy pathenv.template
File metadata and controls
executable file
·59 lines (44 loc) · 1.9 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# VBVR-InferKit Environment Configuration
# Copy this file to .env and configure your API keys
# ===========================================
# VIDEO GENERATION API KEYS
# ===========================================
# Luma (Agents API — agents.lumalabs.ai)
LUMA_AGENTS_API_KEY=your_luma_agents_api_key_here
# OpenAI Sora
OPENAI_API_KEY=your_openai_api_key_here
# Runway ML
RUNWAYML_API_SECRET=your_runway_secret_here
# Kling AI
# Supports direct API key or JWT-based auth (access key + secret key)
KLING_API_KEY=your_kling_api_key_here
# KLING_ACCESS_KEY=your_kling_access_key_here
# KLING_SECRET_KEY=your_kling_secret_key_here
# fal.ai (Seedance / ByteDance models)
# Get your key from: https://fal.ai/dashboard/keys
FAL_KEY=your_fal_key_here
# WaveSpeed (serves OpenAI Sora-2 without an OpenAI account)
# Get your key from: https://wavespeed.ai
WAVESPEED_API_KEY=your_wavespeed_key_here
# ===========================================
# GOOGLE VEO MODELS (GEMINI API)
# ===========================================
# Gemini API Key for Veo video generation models
# Get your API key from: https://aistudio.google.com/app/apikey
GEMINI_API_KEY=your_gemini_api_key_here
# ===========================================
# HUGGINGFACE
# ===========================================
# HuggingFace token (for downloading model weights)
HF_TOKEN=hf_your_token_here
# ===========================================
# MORPHIC FRAMES-TO-VIDEO CONFIGURATION
# ===========================================
# Wan2.2 checkpoint directory
# Download with: hf download Wan-AI/Wan2.2-I2V-A14B --local-dir ./weights/wan/Wan2.2-I2V-A14B
MORPHIC_WAN2_CKPT_DIR=./weights/wan/Wan2.2-I2V-A14B
# LoRA weights file path
# Download with: hf download morphic/Wan2.2-frames-to-video --local-dir ./weights/morphic
MORPHIC_LORA_WEIGHTS_PATH=./weights/morphic/lora_interpolation_high_noise_final.safetensors
# Number of GPUs to use (default: 8)
MORPHIC_NPROC_PER_NODE=8