Interface DocumentInput<Metadata>

interface DocumentInput<Metadata> {
    pageContent: string;
    id?: string;
    metadata?: Metadata;
}

Type Parameters

  • Metadata extends Record<string, any> = Record<string, any>

Implemented by

Properties

pageContent: string
id?: string

An optional identifier for the document.

Ideally this should be unique across the document collection and formatted as a UUID, but this will not be enforced.

metadata?: Metadata