Muapi/ltx-2.3-i2v-wan2.2-i2v-a14b-anthro-furry-transformation-lora
01.1k
LTX-2.3 I2V & Wan2.2 I2V A14B Anthro Furry transformation LoRA
Base model: LTXV 2.3 Trained words: furrytransformation1
๐ง 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": "ltx-2.3-i2v-wan2.2-i2v-a14b-anthro-furry-transformation-lora",
"lora_strength": 1.0,
"width": 768,
"height": 512,
"num_frames": 97
}
print(requests.post(url, headers=headers, json=payload).json())