Skip to content

Commit f9778cd

Browse files
committed
Fix image size
1 parent 93d0181 commit f9778cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Labfiles/05-image-generation/CSharp/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ static async Task Main(string[] args)
4242
{
4343
prompt=prompt,
4444
n=1,
45-
resolution="800x800"
45+
resolution="1024x1024"
4646
};
4747

4848
var jsonData = JsonSerializer.Serialize(data);

Labfiles/05-image-generation/Python/generate-image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def main():
2222
body = {
2323
"prompt": prompt,
2424
"n": 1,
25-
"resolution": "800x800"
25+
"resolution": "1024x1024"
2626
}
2727
submission = requests.post(url, headers=headers, json=body)
2828

0 commit comments

Comments
 (0)