From 4b0adb1509871ab279b8a5b4a0967e4e0ee48e8a Mon Sep 17 00:00:00 2001 From: Pine Date: Tue, 15 Sep 2026 00:09:49 +0800 Subject: [PATCH] =?UTF-8?q?feat(server-core):=20catalog=20=E9=80=8F?= =?UTF-8?q?=E4=BC=A0=20per=5Fimage=5Finput=5Fprice=EF=BC=88=E6=8C=89?= =?UTF-8?q?=E5=BC=A0=E8=BE=93=E5=85=A5=E4=BB=B7=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/services/compute_catalog.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/services/compute_catalog.py b/app/services/compute_catalog.py index f4752cf..62f1c54 100644 --- a/app/services/compute_catalog.py +++ b/app/services/compute_catalog.py @@ -86,6 +86,7 @@ def _map(row: dict) -> dict: "text_input_price": row.get("text_input_price", 0) or 0, "image_output_price": row.get("image_output_price", 0) or 0, "per_image_price": row.get("per_image_price", 0) or 0, + "per_image_input_price": row.get("per_image_input_price", 0) or 0, "image_specs": row.get("image_specs", "") or "[]", "image_cache_input_price": row.get("image_cache_input_price", 0) or 0, "text_cache_input_price": row.get("text_cache_input_price", 0) or 0,