Muapi's picture
Add LTX-2.0 -Character-huangchan(黄蝉)
6282c44 verified
|
Raw
History Blame Contribute Delete
839 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
---
# LTX-2.0 -Character-huangchan(黄蝉)
![preview](./preview.jpg)
**Base model**: LTXV2
**Trained words**: huangchan
## 🧠 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": "ltx-2.0-character-huangchan",
"lora_strength": 1.0,
"width": 768,
"height": 512,
"num_frames": 97
}
print(requests.post(url, headers=headers, json=payload).json())
```