Rooni commited on
Commit
49e78ab
1 Parent(s): 3118806

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -73,8 +73,7 @@ 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
- "width": width,
77
- "height": height
78
  }
79
 
80
  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": f'{width}×{height}'
 
77
  }
78
 
79
  image_bytes = requests.post(API_URL, headers=headers, json=payload).content