@@ -99,11 +99,11 @@ CREATE TRIGGER update_t_sys_param_updated_at
9999INSERT INTO t_sys_param (id, param_value, param_type, option_list, description, is_built_in,
100100 can_modify, is_enabled, created_by, updated_by)
101101VALUES
102- (' sys.knowledge.base.count' , ' 200' , ' number' , ' 10,200,500' , ' 知识库最大数量' , 1 , 1 , 1 , ' system' , ' system' ),
103- (' SEARCH_API' , ' tavily' , ' string' , ' tavily,infoquest,duckduckgo,brave_search,arxiv' , ' deer-flow使用的搜索引擎' , 1 , 1 , 1 , ' system' , ' system' ),
104- (' TAVILY_API_KEY' , ' tvly-dev-xxx' , ' string' , ' ' , ' deer-flow使用的搜索引擎所需的apiKey' , 1 , 1 , 1 , ' system' , ' system' ),
105- (' BRAVE_SEARCH_API_KEY' , ' api-xxx' , ' string' , ' ' , ' deer-flow使用的搜索引擎所需的apiKey' , 1 , 1 , 1 , ' system' , ' system' ),
106- (' JINA_API_KEY' , ' ' , ' string' , ' ' , ' deer-flow使用的JINA搜索引擎所需的apiKey' , 1 , 1 , 1 , ' system' , ' system' ),
107- (' sys.management.dataset.pvc.name' , ' datamate-dataset-pvc' , ' string' , ' ' , ' 数据集所在pvc名称' , 1 , 0 , 1 , ' system' , ' system' ),
108- (' DATA_JUICER_EXECUTOR' , ' default' , ' string' , ' default,ray' , ' data-juicer使用的执行器' , 1 , 1 , 1 , ' system' , ' system' )
102+ (' sys.knowledge.base.count' , ' 200' , ' number' , ' 10,200,500' , ' 知识库最大数量' , true, true, true , ' system' , ' system' ),
103+ (' SEARCH_API' , ' tavily' , ' string' , ' tavily,infoquest,duckduckgo,brave_search,arxiv' , ' deer-flow使用的搜索引擎' , true, true, true , ' system' , ' system' ),
104+ (' TAVILY_API_KEY' , ' tvly-dev-xxx' , ' string' , ' ' , ' deer-flow使用的搜索引擎所需的apiKey' , true, true, true , ' system' , ' system' ),
105+ (' BRAVE_SEARCH_API_KEY' , ' api-xxx' , ' string' , ' ' , ' deer-flow使用的搜索引擎所需的apiKey' , true, true, true , ' system' , ' system' ),
106+ (' JINA_API_KEY' , ' ' , ' string' , ' ' , ' deer-flow使用的JINA搜索引擎所需的apiKey' , true, true, true , ' system' , ' system' ),
107+ (' sys.management.dataset.pvc.name' , ' datamate-dataset-pvc' , ' string' , ' ' , ' 数据集所在pvc名称' , true, false,true , ' system' , ' system' ),
108+ (' DATA_JUICER_EXECUTOR' , ' default' , ' string' , ' default,ray' , ' data-juicer使用的执行器' , true, true, true , ' system' , ' system' )
109109ON CONFLICT (id) DO NOTHING;
0 commit comments