Muapi's picture
Add Heather - Silent Hill 3
971bd3e verified
|
Raw
History Blame Contribute Delete
949 Bytes
metadata
license: openrail++
library_name: diffusers
base_model: Lightricks/LTX-Video
tags:
  - lora
  - text-to-video
  - ltx
  - ltx-video
  - ltxv-2.3
pipeline_tag: text-to-video

Heather - Silent Hill 3

preview

Base model: LTXV 2.3 Trained words: sh3heather, woman with short blonde hair wearing a white vest and orange sleeveless turtleneck and short green skirt and brown boots

🧠 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": "heather-silent-hill-3",
    "lora_strength": 1.0,
    "width": 768,
    "height": 512,
    "num_frames": 97
}
print(requests.post(url, headers=headers, json=payload).json())