Fix: Remove CompilationTemplateFormField from dataset setting page. (#17852)

This commit is contained in:
balibabu
2026-08-05 15:59:57 +08:00
committed by GitHub
parent cd6e73bcb5
commit fd6d5faceb
2 changed files with 0 additions and 8 deletions

View File

@@ -103,10 +103,6 @@ export const formSchema = z
.optional(),
enable_metadata: z.boolean().optional(),
llm_id: z.string().optional(),
// Compilation template group (e.g. the "wiki" Artifacts template with
// plan=yes/no). Persisted to parser_config so the wiki build backend can
// resolve the template and honour plan (Mode A vs Mode B).
compilation_template_group_id: z.string().nullish(),
// Table parser: "auto" = all columns both, "manual" = use column role selector
table_column_mode: z.enum(['auto', 'manual']).optional(),
// Table parser: column name -> role (indexing | metadata | both); legacy "vectorize" -> indexing

View File

@@ -1,5 +1,4 @@
import { AvatarUpload } from '@/components/avatar-upload';
import { CompilationTemplateFormField } from '@/components/compilation-template-form-field';
import { SelectWithSearch } from '@/components/originui/select-with-search';
import PageRankFormField from '@/components/page-rank-form-field';
import { RAGFlowFormItem } from '@/components/ragflow-form';
@@ -130,9 +129,6 @@ export function GeneralForm() {
ownerTenantId={useKnowledgeBaseContext().knowledgeBase?.tenant_id}
></EmbeddingModelItem>
<PageRankFormField></PageRankFormField>
<CompilationTemplateFormField
horizontal={true}
></CompilationTemplateFormField>
<TagItems></TagItems>
</>