ehristoforu commited on
Commit
2a45ba0
·
1 Parent(s): b19f3fd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +35 -8
app.py CHANGED
@@ -9,14 +9,40 @@ API_URL = os.getenv("HF_MODEL_API_URL")
9
  API_TOKEN = os.getenv("HF_READ_TOKEN")
10
  headers = {"Authorization": f"Bearer {API_TOKEN}"}
11
 
12
- def query(prompt, is_negative=False, steps=50, cfg_scale=7, seed=None):
13
- payload = {
14
- "inputs": prompt+"8k",
15
- "is_negative": is_negative,
16
- "steps": steps,
17
- "cfg_scale": cfg_scale,
18
- "seed": seed if seed is not None else random.randint(-1, 2147483647)
19
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  # Вставьте ваш код для запроса к модели и получения изображения
21
  image_bytes = requests.post(API_URL, headers=headers, json=payload).content
22
  image = Image.open(io.BytesIO(image_bytes))
@@ -206,6 +232,7 @@ with gr.Blocks(css=css) as sdxl:
206
  with gr.Column(scale=1):
207
  text_prompt = gr.Textbox(label="Prompt", placeholder="a cute cat", lines=1, elem_id="prompt-text-input")
208
  negative_prompt = gr.Textbox(label="Negative Prompt", value="text, blurry, fuzziness", lines=1, elem_id="negative-prompt-text-input")
 
209
  text_button = gr.Button("Generate", variant='primary', elem_id="gen-button")
210
  with gr.Row():
211
  with gr.Column(scale=1):
 
9
  API_TOKEN = os.getenv("HF_READ_TOKEN")
10
  headers = {"Authorization": f"Bearer {API_TOKEN}"}
11
 
12
+ def query(prompt, is_negative=False, image_style="None style", steps=50, cfg_scale=7, seed=None):
13
+ if image_style == "None style":
14
+ payload = {
15
+ "inputs": prompt + ", 8k",
16
+ "is_negative": is_negative,
17
+ "steps": steps,
18
+ "cfg_scale": cfg_scale,
19
+ "seed": seed if seed is not None else random.randint(-1, 2147483647)
20
+ }
21
+ elif image_style == "Cinematic":
22
+ payload = {
23
+ "inputs": prompt+", realistic, detailed, textured, skin, hair, eyes, by Alex Huguet, Mike Hill, Ian Spriggs, JaeCheol Park, Marek Denko",
24
+ "is_negative": is_negative+", abstract, cartoon, stylized",
25
+ "steps": steps,
26
+ "cfg_scale": cfg_scale,
27
+ "seed": seed if seed is not None else random.randint(-1, 2147483647)
28
+ }
29
+ elif image_style == "Digital Art":
30
+ payload = {
31
+ "inputs": prompt + ", faded , vintage , nostalgic , by Jose Villa , Elizabeth Messina , Ryan Brenizer , Jonas Peterson , Jasmine Star",
32
+ "is_negative": is_negative + ", sharp , modern , bright",
33
+ "steps": steps,
34
+ "cfg_scale": cfg_scale,
35
+ "seed": seed if seed is not None else random.randint(-1, 2147483647)
36
+ }
37
+ elif image_style == "Portrait":
38
+ payload = {
39
+ "inputs": prompt + ", soft light, sharp, exposure blend, medium shot, bokeh, (hdr:1.4), high contrast, (cinematic, teal and orange:0.85), (muted colors, dim colors, soothing tones:1.3), low saturation, (hyperdetailed:1.2), (noir:0.4), (natural skin texture, hyperrealism, soft light, sharp:1.2)",
40
+ "is_negative": is_negative,
41
+ "steps": steps,
42
+ "cfg_scale": cfg_scale,
43
+ "seed": seed if seed is not None else random.randint(-1, 2147483647)
44
+ }
45
+
46
  # Вставьте ваш код для запроса к модели и получения изображения
47
  image_bytes = requests.post(API_URL, headers=headers, json=payload).content
48
  image = Image.open(io.BytesIO(image_bytes))
 
232
  with gr.Column(scale=1):
233
  text_prompt = gr.Textbox(label="Prompt", placeholder="a cute cat", lines=1, elem_id="prompt-text-input")
234
  negative_prompt = gr.Textbox(label="Negative Prompt", value="text, blurry, fuzziness", lines=1, elem_id="negative-prompt-text-input")
235
+ image_style = gr.Dropdown(label="Style", choices=["None style", "Cinematic", "Digital Art", "Portrait"], value="None style", allow_custom_value=False)
236
  text_button = gr.Button("Generate", variant='primary', elem_id="gen-button")
237
  with gr.Row():
238
  with gr.Column(scale=1):