CoolFace
Modelpublic

Muapi/loona-illustrious-wan-2.1-human-hellhound-shrekman-hellaverse-loras

sourceHugging Faceopenrail++updated 4mo agoView on Hugging Face
0likes13downloads
Model Card

Loona Illustrious + Wan 2.1 - Human/Hellhound | Shrekman Hellaverse Loras

[image]

Base model: Wan Video 14B t2v Trained words: L00na, L00na a wolf girl with black and white fur, red sclera and white eyes, on this video she is wearing her spiked collar, grey crop top, off shoulder shirt, with a pentagram on her chest that's made of thin black lines.

๐Ÿง  Usage (Python)

๐Ÿ”‘ Get your MUAPI key from muapi.ai/access-keys

python
import requests, os
url = "https://api.muapi.ai/api/v1/wan21_t2v"
headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}
payload = {
    "prompt": "masterpiece, best quality",
    "lora_model": "loona-illustrious-wan-21-humanhellhound-shrekman-hellaverse-loras",
    "lora_strength": 1.0,
    "width": 832,
    "height": 480,
    "num_frames": 81
}
print(requests.post(url, headers=headers, json=payload).json())