Instructions to use Muapi/aelita_nx-t2v-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Muapi/aelita_nx-t2v-model with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import export_to_video # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("wan-ai/Wan2.1-T2V-14B-Diffusers", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Muapi/aelita_nx-t2v-model") prompt = "A man with short gray hair plays a red electric guitar." output = pipe(prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
File size: 2,327 Bytes
f5945c6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | ---
license: openrail++
library_name: diffusers
base_model: wan-ai/Wan2.1-T2V-14B-Diffusers
tags:
- lora
- text-to-video
- wan
- wan2.1
- wan-video-14b-t2v
pipeline_tag: text-to-video
---
# Aelita_NX T2V Model

**Base model**: Wan Video 14B t2v
**Trained words**: AelitACODEL, The character is a young woman with short, spiky pink hair and a pale skin tone. She has a small, slender build with a youthful appearance. She has a small bust., This is a digital drawing in an anime style. She is wearing a long-sleeved, knee-length dress in a deep maroon color with a high neckline and three small, rounded buttons down the front., The image is a digital 3D CGI rendering of a stylized, fantastical character. She is dressed in a futuristic, high-tech outfit consisting of a sleeveless top with horizontal stripes in shades of pink, white, and purple, and a short, pleated skirt with a star-shaped buckle at the waist., The image is a digital 3D CGI rendering of a stylized, fantastical character. The character is a young elf-like with pointed ears. They are dressed in a medieval-inspired outfit consisting of a short, maroon dress with a white sash around the waist, and matching maroon sleeves that extend to the elbows., This is a digital drawing in an anime style. She is dressed in a futuristic, high-tech outfit that includes a white and purple top with a high collar, a blue and white chest piece, and matching gloves. Her outfit also features a futuristic, segmented design with a metallic sheen., This is a digital drawing in an anime style. She is dressed in a dark, long-sleeved dress with a high collar, styled in a Victorian or Gothic fashion. The dress is a deep purple color with a subtle gradient effect, fading slightly lighter towards the hem.
## 🧠 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/wan21_t2v"
headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}
payload = {
"prompt": "masterpiece, best quality",
"lora_model": "aelita_nx-t2v-model",
"lora_strength": 1.0,
"width": 832,
"height": 480,
"num_frames": 81
}
print(requests.post(url, headers=headers, json=payload).json())
```
|