Type Alias KnowledgeBaseLight

type KnowledgeBaseLight = {
    advancedIndexing?: boolean;
    contentSummary: ContentSummary;
    createdAt: string;
    createdBy: string;
    description: string;
    id: string;
    lastIndexedAt?: string;
    name: string;
    ownerId: string;
    selectedErrorsCount?: number;
    spaceId: string;
    tags: string[];
    tenantId?: string;
    updatedAt: string;
    updatedBy: string;
}
Index

Properties

advancedIndexing?: boolean

User opt in to advanced parsing and chunking pipeline. Default is false, which will run legacy parsing and chunking.

contentSummary: ContentSummary
createdAt: string
createdBy: string
description: string
id: string
lastIndexedAt?: string
name: string
ownerId: string
selectedErrorsCount?: number
spaceId: string
tags: string[]
tenantId?: string
updatedAt: string
updatedBy: string