mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:41:09 +02:00
New GPU service for fast text-to-video generation using LTX-Video (~2B params) on the RTX 3090. Generates 480p clips in 10-30 seconds, uses ~10GB VRAM. Includes Cloudflare Tunnel route, Prometheus monitoring, and health checks. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
28 lines
486 B
Text
28 lines
486 B
Text
# Mana Video Generation - Environment Variables
|
|
|
|
# Service
|
|
PORT=3026
|
|
|
|
# Model
|
|
LTX_MODEL_ID=Lightricks/LTX-Video
|
|
DEVICE=cuda
|
|
|
|
# Defaults
|
|
DEFAULT_WIDTH=704
|
|
DEFAULT_HEIGHT=480
|
|
DEFAULT_NUM_FRAMES=81
|
|
DEFAULT_FPS=25
|
|
DEFAULT_STEPS=30
|
|
DEFAULT_GUIDANCE_SCALE=7.5
|
|
|
|
# Limits
|
|
MAX_PROMPT_LENGTH=2000
|
|
MAX_FRAMES=161
|
|
MAX_STEPS=50
|
|
GENERATION_TIMEOUT=600
|
|
|
|
# Output
|
|
OUTPUT_DIR=/tmp/mana-video-gen
|
|
|
|
# CORS
|
|
CORS_ORIGINS=https://mana.how,https://picture.mana.how,https://chat.mana.how,http://localhost:5173
|