Muapi/star-wars-imperial-officer-uniform-ltx2-and-flux-and-sd-1.5
027
Star Wars imperial officer uniform (LTX2 and FLUX and SD 1.5)
Base model: LTXV2 Trained words: IMPOFFF uniform, IMPOFFF uniform hat, IMPOFFF uniform trousers
๐ง Usage (Python)
๐ 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": "star-wars-imperial-officer-uniform-ltx2-and-flux-and-sd-1.5",
"lora_strength": 1.0,
"width": 768,
"height": 512,
"num_frames": 97
}
print(requests.post(url, headers=headers, json=payload).json())