adhikjoshi commited on
Commit
c2d7f36
·
verified ·
1 Parent(s): 465c410

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +48 -40
README.md CHANGED
@@ -1,17 +1,23 @@
1
  ---
2
  license: creativeml-openrail-m
3
  tags:
4
- - modelslab.com
5
- - stable-diffusion-api
6
- - text-to-image
7
- - ultra-realistic
8
  pinned: true
 
9
  library_name: diffusers
 
 
 
 
10
  ---
11
 
12
  # Animixed API Inference
13
 
14
- ![generated from modelslab.com](https://pub-3626123a908346a7a8be8d9295f44e26.r2.dev/generations/8766742041708837675.png)
 
15
  ## Get API Key
16
 
17
  Get API key from [ModelsLab API](http://modelslab.com), No Payment needed.
@@ -26,40 +32,42 @@ Model link: [View model](https://modelslab.com/models/animixed)
26
 
27
  View all models: [View Models](https://modelslab.com/models)
28
 
29
- import requests
30
- import json
31
-
32
- url = "https://modelslab.com/api/v6/images/text2img"
33
-
34
- payload = json.dumps({
35
- "key": "your_api_key",
36
- "model_id": "animixed",
37
- "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",
38
- "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",
39
- "width": "512",
40
- "height": "512",
41
- "samples": "1",
42
- "num_inference_steps": "30",
43
- "safety_checker": "no",
44
- "enhance_prompt": "yes",
45
- "seed": None,
46
- "guidance_scale": 7.5,
47
- "multi_lingual": "no",
48
- "panorama": "no",
49
- "self_attention": "no",
50
- "upscale": "no",
51
- "embeddings": "embeddings_model_id",
52
- "lora": "lora_model_id",
53
- "webhook": None,
54
- "track_id": None
55
- })
56
-
57
- headers = {
58
- 'Content-Type': 'application/json'
59
- }
60
-
61
- response = requests.request("POST", url, headers=headers, data=payload)
62
-
63
- print(response.text)
 
 
64
 
65
  > Use this coupon code to get 25% off **DMGG0RBN**
 
1
  ---
2
  license: creativeml-openrail-m
3
  tags:
4
+ - modelslab.com
5
+ - stable-diffusion-api
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://pub-3626123a908346a7a8be8d9295f44e26.r2.dev/generations/8766742041708837675.png
15
  ---
16
 
17
  # Animixed 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": "animixed",
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**