mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:21:09 +02:00
feat(mana-video-gen): add AI video generation service with LTX-Video
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>
This commit is contained in:
parent
28b953255b
commit
06107f6a52
13 changed files with 1017 additions and 0 deletions
|
|
@ -203,6 +203,15 @@ scrape_configs:
|
|||
metrics_path: '/health'
|
||||
scrape_interval: 30s
|
||||
|
||||
# GPU: Video Generation (LTX-Video)
|
||||
- job_name: 'gpu-video-gen'
|
||||
static_configs:
|
||||
- targets: ['192.168.178.11:3026']
|
||||
labels:
|
||||
instance: 'gpu-server'
|
||||
metrics_path: '/health'
|
||||
scrape_interval: 30s
|
||||
|
||||
# ============================================
|
||||
# Go Infrastructure Services
|
||||
# ============================================
|
||||
|
|
@ -339,6 +348,7 @@ scrape_configs:
|
|||
- https://gpu-stt.mana.how
|
||||
- https://gpu-tts.mana.how
|
||||
- https://gpu-img.mana.how
|
||||
- https://gpu-video.mana.how
|
||||
relabel_configs:
|
||||
- source_labels: [__address__]
|
||||
target_label: __param_target
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue