CoolFace
Modelpublic

Muapi/tifa-lockhart-final-fantasy-7-outfit-collection-23-outfits

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

Tifa Lockhart (Final Fantasy 7) (Outfit Collection 23 Outfits)

[image]

Base model: Illustrious Trained words: tfff7lckhrt, brown eyes, black hair, long hair, swept bangs, silver earring, jewelry, white tank top, black undershirt, midriff, bare shoulders, toned, black gloves, elbow pad, red arm guard, single arm guard, elbow gloves, fingerless gloves, belt, black skirt, miniskirt, suspender skirt, black thighhighs, zettai ryouiki, suspenders, navel,

๐Ÿง  Usage (Python)

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

python
import requests, os
url = "https://api.muapi.ai/api/v1/sdxl-lora-image"
headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}
payload = {
    "prompt": "masterpiece, best quality",
    "lora_model": "tifa-lockhart-final-fantasy-7-outfit-collection-23-outfits",
    "lora_strength": 1.0,
    "width": 1024,
    "height": 1024,
    "num_images": 1
}
print(requests.post(url, headers=headers, json=payload).json())