Muapi's picture
Add 🌟 Fentanyl Attack Styles - WAI | Illustrious
b7e3beb verified
|
Raw
History Blame Contribute Delete
1.03 kB
---
license: openrail++
library_name: diffusers
base_model: OnomaAIResearch/Illustrious-xl-early-release-v0
tags:
- lora
- text-to-image
- stable-diffusion-xl
- illustrious
- illustrious
pipeline_tag: text-to-image
---
# 🌟 Fentanyl Attack Styles - WAI | Illustrious
![preview](./preview.jpg)
**Base model**: Illustrious
**Trained words**: fabulosity_style, best quality, flat color, no lineart, no outline, blurry background, depth of field, thick eyelashes,
## 🧠 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/sdxl-lora-image"
headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}
payload = {
"prompt": "masterpiece, best quality",
"lora_model": "fentanyl-attack-styles-wai-illustrious",
"lora_strength": 1.0,
"width": 1024,
"height": 1024,
"num_images": 1
}
print(requests.post(url, headers=headers, json=payload).json())
```