Downloads · 30 days
13
10% of all-time downloads
Muapi/stomach-bulge
stomach-bulge 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
13
10% of all-time downloads
All-time downloads
127
Public
Repo size
1.4 GB
Likes
0
Public
Click a slice to open those files.
.safetensors1.3 GB · 100%
From the Hugging Face model README

Base model: LTXV 2.3 Trained words: st0mach bulge
🔑 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": "stomach-bulge",
"lora_strength": 1.0,
"width": 768,
"height": 512,
"num_frames": 97
}
print(requests.post(url, headers=headers, json=payload).json())