Commit
·
e950c83
1
Parent(s):
dac5627
converted using stablediffusionapi.com
Browse files
README.md
CHANGED
@@ -6,11 +6,18 @@ tags:
|
|
6 |
- text-to-image
|
7 |
- ultra-realistic
|
8 |
pinned: true
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
---
|
10 |
|
11 |
# wai-nsfw-illustrious-sdxl API Inference
|
12 |
|
13 |
-
|
|
|
14 |
## Get API Key
|
15 |
|
16 |
Get API key from [ModelsLab API](http://modelslab.com), No Payment needed.
|
@@ -25,40 +32,42 @@ Model link: [View model](https://modelslab.com/models/wai-nsfw-illustrious-sdxl)
|
|
25 |
|
26 |
View all models: [View Models](https://modelslab.com/models)
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
|
|
|
|
63 |
|
64 |
> Use this coupon code to get 25% off **DMGG0RBN**
|
|
|
6 |
- text-to-image
|
7 |
- ultra-realistic
|
8 |
pinned: true
|
9 |
+
pipeline_tag: text-to-image
|
10 |
+
library_name: diffusers
|
11 |
+
widget:
|
12 |
+
- text: a girl wandering through the forest
|
13 |
+
output:
|
14 |
+
url: https://cdn2.stablediffusionapi.com/generations/bf190b5a-fe19-437c-ba05-82f29cb1f7ad-0.png
|
15 |
---
|
16 |
|
17 |
# wai-nsfw-illustrious-sdxl API Inference
|
18 |
|
19 |
+
<Gallery />
|
20 |
+
|
21 |
## Get API Key
|
22 |
|
23 |
Get API key from [ModelsLab API](http://modelslab.com), No Payment needed.
|
|
|
32 |
|
33 |
View all models: [View Models](https://modelslab.com/models)
|
34 |
|
35 |
+
```python
|
36 |
+
import requests
|
37 |
+
import json
|
38 |
+
|
39 |
+
url = "https://modelslab.com/api/v6/images/text2img"
|
40 |
+
|
41 |
+
payload = json.dumps({
|
42 |
+
"key": "your_api_key",
|
43 |
+
"model_id": "wai-nsfw-illustrious-sdxl",
|
44 |
+
"prompt": "ultra realistic close up portrait ((beautiful pale cyberpunk female with heavy black eyeliner)), blue eyes, shaved side haircut, hyper detail, cinematic lighting, magic neon, dark red city, Canon EOS R3, nikon, f/1.4, ISO 200, 1/160s, 8K, RAW, unedited, symmetrical balance, in-frame, 8K",
|
45 |
+
"negative_prompt": "painting, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, deformed, ugly, blurry, bad anatomy, bad proportions, extra limbs, cloned face, skinny, glitchy, double torso, extra arms, extra hands, mangled fingers, missing lips, ugly face, distorted face, extra legs, anime",
|
46 |
+
"width": "512",
|
47 |
+
"height": "512",
|
48 |
+
"samples": "1",
|
49 |
+
"num_inference_steps": "30",
|
50 |
+
"safety_checker": "no",
|
51 |
+
"enhance_prompt": "yes",
|
52 |
+
"seed": None,
|
53 |
+
"guidance_scale": 7.5,
|
54 |
+
"multi_lingual": "no",
|
55 |
+
"panorama": "no",
|
56 |
+
"self_attention": "no",
|
57 |
+
"upscale": "no",
|
58 |
+
"embeddings": "",
|
59 |
+
"lora": "",
|
60 |
+
"webhook": None,
|
61 |
+
"track_id": None
|
62 |
+
})
|
63 |
+
|
64 |
+
headers = {
|
65 |
+
'Content-Type': 'application/json'
|
66 |
+
}
|
67 |
+
|
68 |
+
response = requests.request("POST", url, headers=headers, data=payload)
|
69 |
+
|
70 |
+
print(response.text)
|
71 |
+
```
|
72 |
|
73 |
> Use this coupon code to get 25% off **DMGG0RBN**
|