adhikjoshi commited on
Commit
e950c83
·
1 Parent(s): dac5627

converted using stablediffusionapi.com

Browse files
Files changed (1) hide show
  1. README.md +45 -36
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
- ![generated from modelslab.com](https://cdn2.stablediffusionapi.com/generations/bf190b5a-fe19-437c-ba05-82f29cb1f7ad-0.png)
 
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
- import requests
29
- import json
30
-
31
- url = "https://modelslab.com/api/v6/images/text2img"
32
-
33
- payload = json.dumps({
34
- "key": "your_api_key",
35
- "model_id": "wai-nsfw-illustrious-sdxl",
36
- "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",
37
- "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",
38
- "width": "512",
39
- "height": "512",
40
- "samples": "1",
41
- "num_inference_steps": "30",
42
- "safety_checker": "no",
43
- "enhance_prompt": "yes",
44
- "seed": None,
45
- "guidance_scale": 7.5,
46
- "multi_lingual": "no",
47
- "panorama": "no",
48
- "self_attention": "no",
49
- "upscale": "no",
50
- "embeddings": "embeddings_model_id",
51
- "lora": "lora_model_id",
52
- "webhook": None,
53
- "track_id": None
54
- })
55
-
56
- headers = {
57
- 'Content-Type': 'application/json'
58
- }
59
-
60
- response = requests.request("POST", url, headers=headers, data=payload)
61
-
62
- print(response.text)
 
 
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**