From 4d6d8b68eef1a58c1af005dc37ea82c825049f90 Mon Sep 17 00:00:00 2001 From: Pine Date: Mon, 14 Sep 2026 22:36:46 +0800 Subject: [PATCH] =?UTF-8?q?feat(compute):=20=E6=A8=A1=E5=9E=8B=E7=9B=AE?= =?UTF-8?q?=E5=BD=95=E9=80=8F=E4=BC=A0=20model=5Ftype=EF=BC=88text/tts/asr?= =?UTF-8?q?/images/video/embed=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 5c8f172..36232d1 100644 --- a/app/services/compute_catalog.py +++ b/app/services/compute_catalog.py @@ -47,6 +47,7 @@ def _map(row: dict) -> dict: "icon": row.get("icon", ""), "icon_file": row.get("icon_file", ""), "modality": row.get("modality", ""), + "model_type": row.get("model_type", "text"), "input_forms": _parse_list(row.get("input_forms")), "output_forms": _parse_list(row.get("output_forms")), "function_icons": _parse_list(row.get("function_icons")),