Rooni commited on
Commit
988fab5
·
1 Parent(s): 96dee2b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -19
app.py CHANGED
@@ -1,8 +1,6 @@
1
  import gradio as gr
2
  import requests
3
  import os
4
- import io
5
- from PIL import Image
6
 
7
  # API ссылка
8
  url = "https://stablediffusionapi.com/api/v4/dreambooth"
@@ -15,27 +13,26 @@ def render(prompt, negative_prompt, width, height, upscale, api_key):
15
  "model_id": "realistic-vision-51",
16
  "prompt": prompt,
17
  "negative_prompt": negative_prompt,
18
- "width": width,
19
- "height": height,
20
- "samples": "1",
21
- "num_inference_steps": "40",
22
- "safety_checker": "no",
23
- "enhance_prompt": "yes",
24
- "seed": None,
25
- "guidance_scale": 7.5,
26
- "multi_lingual": "no",
27
- "panorama": "no",
28
- "self_attention": "no",
29
- "upscale": "no",
30
- "embeddings": "embeddings_model_id",
31
- "lora": "lora_model_id",
32
- "webhook": None,
33
- "track_id": None,
34
  }
35
  response = requests.post(url, json=data)
36
  if response.status_code == 200:
37
  return response.content
38
- image = Image.open(io.BytesIO(response.content))
39
  else:
40
  return None
41
 
 
1
  import gradio as gr
2
  import requests
3
  import os
 
 
4
 
5
  # API ссылка
6
  url = "https://stablediffusionapi.com/api/v4/dreambooth"
 
13
  "model_id": "realistic-vision-51",
14
  "prompt": prompt,
15
  "negative_prompt": negative_prompt,
16
+ "width": width,
17
+ "height": height,
18
+ "samples": "1",
19
+ "num_inference_steps": "40",
20
+ "safety_checker": "no",
21
+ "enhance_prompt": "yes",
22
+ "seed": None,
23
+ "guidance_scale": 7.5,
24
+ "multi_lingual": "no",
25
+ "panorama": "no",
26
+ "self_attention": "no",
27
+ "upscale": "no",
28
+ "embeddings": "embeddings_model_id",
29
+ "lora": "lora_model_id",
30
+ "webhook": None,
31
+ "track_id": None,
32
  }
33
  response = requests.post(url, json=data)
34
  if response.status_code == 200:
35
  return response.content
 
36
  else:
37
  return None
38