CoolFace
Modelpublic

Muapi/embedded-penetrable-sextoy

sourceHugging Faceopenrail++updated 4mo agoView on Hugging Face
0likes13downloads
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# embedded penetrable sextoy15 16![preview](./preview.jpg)17 18**Base model**: Illustrious19**Trained words**: embedded_penetrable_sex_toy,, ----------, human, sexdoll,, humanoid, robot girl, sexbot, mechanical, mechanical body,, robot furry, anthro, sexfurry,, robot furry, anthro, sexfnaf,, robot feral, feral, sexfurry, shortstack,, ---------, inside view, mechanical body, womb window,, internal view, open body, exposed mechanical body, robotic body,, x-ray, inside view, see-through, see-through womb, transparent body, translucent body,, --------, artificial vagina, <COLOR> fleshlight, [solid|see-through|transparent] fleshlight,, ([light grey|grey|dark grey|black] metallic skeleton:0.7), translucent body part,, shiny metallic skeleton,, -------, cum, creampie, cum in belly, full of cum, cum in womb,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": "embedded-penetrable-sextoy",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