Represents a file node with embedded chunks

interface EmbeddedFileNode {
    chunks: EmbeddedChunk[];
    name: string;
    path: string;
    type: "file";
}

Properties

Properties

chunks: EmbeddedChunk[]
name: string
path: string
type: "file"