CoolFace
Modelpublic

Muapi/aesthetic-quality-modifiers-masterpiece

sourceHugging Faceopenrail++updated 4mo agoView on Hugging Face
0likes110downloads
README.md39 linesDownload Raw Back to root
1---2license: openrail++3library_name: diffusers4base_model: wan-ai/Wan2.1-T2V-14B-Diffusers5tags:6  - lora7  - text-to-video8  - wan9  - wan2.110  - wan-video-14b-t2v11pipeline_tag: text-to-video12---13 14# Aesthetic Quality Modifiers - Masterpiece15 16![preview](./preview.jpg)17 18**Base model**: Wan Video 14B t2v19**Trained words**: masterpiece, very aesthetic20 21## ๐Ÿง  Usage (Python)22 23๐Ÿ”‘ **Get your MUAPI key** from [muapi.ai/access-keys](https://muapi.ai/access-keys)24 25```python26import requests, os27url = "https://api.muapi.ai/api/v1/wan21_t2v"28headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}29payload = {30    "prompt": "masterpiece, best quality",31    "lora_model": "aesthetic-quality-modifiers-masterpiece",32    "lora_strength": 1.0,33    "width": 832,34    "height": 480,35    "num_frames": 8136}37print(requests.post(url, headers=headers, json=payload).json())38```39