Downloads · 30 days
34
17% of all-time downloads
Muapi/ltx2.3_ic_hdr_lora
ltx2.3_ic_hdr_lora 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
34
17% of all-time downloads
All-time downloads
200
Public
Repo size
327 MB
Likes
0
Public
Click a slice to open those files.
.safetensors327 MB · 100%
From the Hugging Face model README

Base model: LTXV 2.3 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": "ltx2.3_ic_hdr_lora",
"lora_strength": 1.0,
"width": 768,
"height": 512,
"num_frames": 97
}
print(requests.post(url, headers=headers, json=payload).json())