From 6a8d2c1f9c21fdb823fdae04c41f665c660adab3 Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Mon, 17 Mar 2025 10:33:35 +0800 Subject: [PATCH] refactor: add enum --- apps/dataset/models/data_set.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/dataset/models/data_set.py b/apps/dataset/models/data_set.py index 4f46eda2a..dd2f1b7c9 100644 --- a/apps/dataset/models/data_set.py +++ b/apps/dataset/models/data_set.py @@ -82,6 +82,9 @@ class Type(models.TextChoices): web = 1, 'web站点类型' + lark = 2, '飞书类型' + yuque = 3, '语雀类型' + class HitHandlingMethod(models.TextChoices): optimization = 'optimization', '模型优化'