Muapi's picture
Add blueprint data sheet slider - leco train
6cdceff verified
|
Raw
History Blame Contribute Delete
1.54 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
---
# blueprint data sheet slider - leco train
![preview](./preview.jpg)
**Base model**: Illustrious
**Trained words**: industrial design sketch, monochrome, sketch, white background, simple background, reference sheet, multiple views, english text, , Industrial design,reference sheet, multiple views, english text, {1-3$$ sketch,| monochrome,| sketch| data sheet | blue print}, { white background,| simple background| gradient background, | reference inset, color sheet }, { 1girl, {jk | maid | nurse| android | mecha musume, } | 1boy,, { military uniform, | solider | super hero | android | knight, } |1other, { still life, | machine| mecha| military vehicle, | sports car| non-humanoid robot, | truck | dress| gun| tank | aircraft, } }
## 🧠 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": "blueprint-data-sheet-slider-leco-train",
"lora_strength": 1.0,
"width": 1024,
"height": 1024,
"num_images": 1
}
print(requests.post(url, headers=headers, json=payload).json())
```