From 09474eb99752f300eaf98297f96a2b32044840e7 Mon Sep 17 00:00:00 2001 From: WangLiZhao <1838393649@qq.com> Date: Fri, 22 May 2026 11:17:31 +0800 Subject: [PATCH] =?UTF-8?q?feat(consts):=20=E6=B7=BB=E5=8A=A0=E8=A7=86?= =?UTF-8?q?=E9=A2=91=E6=A8=A1=E5=9E=8B=E7=B1=BB=E5=9E=8B=E5=B8=B8=E9=87=8F?= =?UTF-8?q?=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- consts/public/public.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/consts/public/public.go b/consts/public/public.go index 68d21a5..b17843c 100644 --- a/consts/public/public.go +++ b/consts/public/public.go @@ -22,6 +22,13 @@ const ( ModelTypeOmni = 500 // 全模态模型 OmniSubTypeTextImageAudio = 501 // 全模态模型-文图音 OmniSubTypeVision = 502 // 全模态模型-视觉理解 + + ModelTypeVideo = 600 // 视频模型 + VideoSubTypeTextToVideo = 601 // 视频模型-文生视频 + VideoSubTypeImageToVideo = 602 // 视频模型-图生视频 + VideoSubTypeImageTextToVideo = 603 // 视频模型-图文生视频 + VideoSubTypeVideoToVideo = 604 // 视频模型-视频生视频 + VideoSubTypeVideoEdit = 605 // 视频模型-视频编辑 ) // ModelTypeName 模型类型名称映射 @@ -46,4 +53,11 @@ var ModelTypeName = map[int]string{ ModelTypeOmni: "全模态模型", OmniSubTypeTextImageAudio: "全模态模型-文图音", OmniSubTypeVision: "全模态模型-视觉理解", + + ModelTypeVideo: "视频模型", + VideoSubTypeTextToVideo: "视频模型-文生视频", + VideoSubTypeImageToVideo: "视频模型-图生视频", + VideoSubTypeImageTextToVideo: "视频模型-图文生视频", + VideoSubTypeVideoToVideo: "视频模型-视频生视频", + VideoSubTypeVideoEdit: "视频模型-视频编辑", }