From f748511dca5fffb6610549014a9c40dcafd552ff Mon Sep 17 00:00:00 2001 From: Pine Date: Tue, 15 Sep 2026 00:48:54 +0800 Subject: [PATCH] =?UTF-8?q?feat(server-core):=20catalog=20=E9=80=8F?= =?UTF-8?q?=E4=BC=A0=E8=A7=86=E9=A2=91=E5=AE=9A=E4=BB=B7=207=20=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=EF=BC=88=E6=A8=A1=E5=BC=8F/5=20=E4=BB=B7/=E8=A7=84?= =?UTF-8?q?=E6=A0=BC=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/services/compute_catalog.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/services/compute_catalog.py b/app/services/compute_catalog.py index 62f1c54..50c2b13 100644 --- a/app/services/compute_catalog.py +++ b/app/services/compute_catalog.py @@ -90,6 +90,13 @@ def _map(row: dict) -> dict: "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, + "video_pricing_mode": row.get("video_pricing_mode", "") or "", + "video_text_input_price": row.get("video_text_input_price", 0) or 0, + "video_video_input_price": row.get("video_video_input_price", 0) or 0, + "video_audio_input_price": row.get("video_audio_input_price", 0) or 0, + "video_image_input_price": row.get("video_image_input_price", 0) or 0, + "video_output_price": row.get("video_output_price", 0) or 0, + "video_specs": row.get("video_specs", "") or "[]", "context_window": row.get("context_window", 0) or 0, "context_window_unit": row.get("context_window_unit", "M"), "context_window_display": row.get("context_window_display", ""),