Muapi/saotome-berry-wan2.1-14b-t2v
021
Saotome Berry/早乙女ベリー | Wan2.1 14B T2V
Base model: Wan Video 14B t2v Trained words: Saotome Berry, anime-style girl. The image features an anime-style character with long, flowing red hair that cascades down to the shoulders. The hair is styled in loose waves, giving it a soft and gentle appearance. The character has large, expressive purple eyes. The character is wearing a white outfit with pink and with a bow at the collar, which includes a black and purple ribbon. The outfit also features gold buttons and a white apron-like garment, that includes a frilly skirt, a white apron with a bow, and pink knee-high socks.She is also wearing a white hat with a large, decorative bow on top
🧠 Usage (Python)
🔑 Get your MUAPI key from muapi.ai/access-keys
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": "saotome-berry早乙女ベリー-wan21-14b-t2v",
"lora_strength": 1.0,
"width": 832,
"height": 480,
"num_frames": 81
}
print(requests.post(url, headers=headers, json=payload).json())