Downloads · 30 days
118
13% of all-time downloads
Muapi/ltx2-oral-suite
ltx2-oral-suite 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
118
13% of all-time downloads
All-time downloads
921
Public
Repo size
1.3 GB
Likes
0
Public
Click a slice to open those files.
.safetensors1.2 GB · 97%
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": "ltx2-oral-suite",
"lora_strength": 1.0,
"width": 768,
"height": 512,
"num_frames": 97
}
print(requests.post(url, headers=headers, json=payload).json())