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

Update app.py

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