Downloads · 30 days
18
45% of all-time downloads
Muapi/disgaea-ltx-2
disgaea-ltx-2 is a text-to-video model from Muapi. Use it when you need video from a text prompt. It is set up for diffusers. The card lists the license as openrail++.
Downloads · 30 days
18
45% of all-time downloads
All-time downloads
40
Public
Repo size
629 MB
Likes
0
Public
Click a slice to open those files.
.safetensors617 MB · 98%
From the Hugging Face model README

Base model: LTXV2 Trained words:
🔑 Get your MUAPI key from muapi.ai/access-keys
import requests, os
url = "https://api.muapi.ai/api/v1/ltx_lora_video"
headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}
payload = {
"prompt": "masterpiece, best quality",
"lora_model": "disgaea-ltx-2",
"lora_strength": 1.0,
"width": 768,
"height": 512,
"num_frames": 97
}
print(requests.post(url, headers=headers, json=payload).json())