From a0598451e6c5c78050cdfcc8e094e4bef84790a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=96=8C?= <259278618@qq.com> Date: Fri, 23 Jan 2026 23:52:31 +0800 Subject: [PATCH] .gitignore --- rag/enio/priority_enum.go | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/rag/enio/priority_enum.go b/rag/enio/priority_enum.go index 314b7e8..0fb371b 100644 --- a/rag/enio/priority_enum.go +++ b/rag/enio/priority_enum.go @@ -14,8 +14,11 @@ const ( type TaskType string const ( - TaskTypeDocumentIngestion TaskType = "document_ingestion" // 文档摄入任务 - TaskTypeVectorIngestion TaskType = "vector_ingestion" // 向量摄入任务 - TaskTypeIndexCreation TaskType = "index_creation" // 索引创建任务 - TaskTypeQAProcessing TaskType = "qa_processing" // 问答处理任务 + TaskTypeDocumentIngestion TaskType = "document_ingestion" // 文档摄入任务 + TaskTypeVectorIngestion TaskType = "vector_ingestion" // 向量摄入任务 + TaskTypeIndexCreation TaskType = "index_creation" // 索引创建任务 + TaskTypeQAProcessing TaskType = "qa_processing" // 问答处理任务 + TaskTypeKnowledgeConstruction TaskType = "knowledge_construction" // 知识库构建任务 + TaskTypeGraphBuilding TaskType = "graph_building" // 图谱构建任务 + TaskTypeKnowledgeSync TaskType = "knowledge_sync" // 知识同步任务 )