Muapi's picture
Add Jessica Rabbit - LTX-2
d06c835 verified
|
Raw
History Blame Contribute Delete
965 Bytes
---
license: openrail++
library_name: diffusers
base_model: Lightricks/LTX-Video
tags:
- lora
- text-to-video
- ltx
- ltx-video
- ltxv2
pipeline_tag: text-to-video
---
# Jessica Rabbit - LTX-2
![preview](./preview.jpg)
**Base model**: LTXV2
**Trained words**: j3ss1c4, long red hair, sparkly pink dress, purple gloves, j3ss1c4 with long red hair wearing a long sparkly pink dress with a side slit, and purple gloves.
## 🧠 Usage (Python)
🔑 **Get your MUAPI key** from [muapi.ai/access-keys](https://muapi.ai/access-keys)
```python
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": "jessica-rabbit-ltx-2",
"lora_strength": 1.0,
"width": 768,
"height": 512,
"num_frames": 97
}
print(requests.post(url, headers=headers, json=payload).json())
```