CoolFace
Modelpublic

Muapi/reverse-nursing-handjob-concept

sourceHugging Faceopenrail++updated 3mo agoView on Hugging Face
0likes28downloads
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# Reverse Nursing Handjob - Concept15 16![preview](./preview.jpg)17 18**Base model**: Illustrious19**Trained words**: <lora:reverse-nursing-handjob-v2-illustriousxl-lora-nochekaiser:1>, reverse nursing handjob, blush, open mouth, 1boy, hetero, sweat, completely nude, standing, motion blur, motion lines, teeth, penis, tongue, saliva, erection, testicles, trembling, clenched teeth, licking, handjob, nipple stimulation, femdom, assertive female, faceless male, arm support,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": "reverse-nursing-handjob-concept",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