From 4f90276473a191f00e73f035cb0dc5610d5aae8c Mon Sep 17 00:00:00 2001 From: ckt1031 <65409152+ckt1031@users.noreply.github.com> Date: Wed, 15 Nov 2023 19:58:47 +0800 Subject: [PATCH] Updated the format of resolution keys in DalleSizeRatios map --- common/model-ratio.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/model-ratio.go b/common/model-ratio.go index eab6ddfd..f4cc33ec 100644 --- a/common/model-ratio.go +++ b/common/model-ratio.go @@ -13,8 +13,8 @@ var DalleSizeRatios = map[string]map[string]float64{ }, "dall-e-3": { "1024x1024": 1, - "1024×1792": 2, - "1792×1024": 2, + "1024x1792": 2, + "1792x1024": 2, }, }