Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -73,7 +73,10 @@ def query(prompt, model, is_negative=False, steps=30, cfg_scale=7, sampler="DPM+
|
|
73 |
"steps": steps,
|
74 |
"cfg_scale": cfg_scale,
|
75 |
"seed": seed if seed != -1 else random.randint(1, 1000000000),
|
76 |
-
"size":
|
|
|
|
|
|
|
77 |
}
|
78 |
|
79 |
image_bytes = requests.post(API_URL, headers=headers, json=payload).content
|
|
|
73 |
"steps": steps,
|
74 |
"cfg_scale": cfg_scale,
|
75 |
"seed": seed if seed != -1 else random.randint(1, 1000000000),
|
76 |
+
"size": {
|
77 |
+
"width": width,
|
78 |
+
"height": height
|
79 |
+
}
|
80 |
}
|
81 |
|
82 |
image_bytes = requests.post(API_URL, headers=headers, json=payload).content
|