SAP AI SDK for JavaScript - v2.13.0
    Preparing search index...

    Type Alias DataRepositoryWithDocuments

    DataRepositoryWithDocuments: {
        documents: Document[];
        id: string;
        message?: string | null;
        metadata?: RetrievalKeyValueListPair[];
        remoteGroundingName?: string | null;
        title: string;
    } & Record<string, any>

    DataRepository schema returned by the Vector search endpoint

    Type Declaration

    • documents: Document[]
    • id: string

      Unique identifier of this DataRepository. Format: "uuid".

    • Optionalmessage?: string | null

      Optional message.

    • Optionalmetadata?: RetrievalKeyValueListPair[]

      Metadata attached to DataRepository. Useful to later limit search to a subset of DataRepositories. Default: [].

    • OptionalremoteGroundingName?: string | null

      Friendly destination Name (grounding.name) of remote instance.

    • title: string