CoolFace
Modelpublic

Muapi/erotic_style

sourceHugging Faceopenrail++updated 4mo agoView on Hugging Face
1likes64downloads
README.md39 linesDownload Raw Back to root
1---2license: openrail++3library_name: diffusers4base_model: OnomaAIResearch/Illustrious-xl-early-release-v05tags:6  - lora7  - text-to-image8  - stable-diffusion-xl9  - illustrious10  - illustrious11pipeline_tag: text-to-image12---13 14# Erotic_style/エロティックスタイル15 16![preview](./preview.jpg)17 18**Base model**: Illustrious19**Trained words**: Erotic_style, uncensored, anime_coloring, anime_screencap,20 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/sdxl-lora-image"28headers = {"Content-Type": "application/json", "x-api-key": os.getenv("MUAPIAPP_API_KEY")}29payload = {30    "prompt": "masterpiece, best quality",31    "lora_model": "erotic_style",32    "lora_strength": 1.0,33    "width": 1024,34    "height": 1024,35    "num_images": 136}37print(requests.post(url, headers=headers, json=payload).json())38```39