Downloads · 30 days
10
26% of all-time downloads
Muapi/slime-girl-concept
slime-girl-concept is a text-to-video model from Muapi. Use it when you need video from a text prompt. It is set up for diffusers. The card lists the license as openrail++.
Downloads · 30 days
10
26% of all-time downloads
All-time downloads
39
Public
Repo size
307 MB
Likes
0
Public
Click a slice to open those files.
.safetensors307 MB · 100%
From the Hugging Face model README

Base model: Wan Video 14B t2v Trained words: slime girl, blue skin, liquid hair, transparent, see-through
🔑 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": "slime-girl-concept",
"lora_strength": 1.0,
"width": 832,
"height": 480,
"num_frames": 81
}
print(requests.post(url, headers=headers, json=payload).json())