Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Interface FetchDocumentsResponse

    The response for the fetch_documents operation.

    FetchDocumentsResponse

    interface FetchDocumentsResponse {
        documents: { [key: string]: FetchedDocument };
        namespace: string;
        pagination?: Pagination;
        usage: DocumentFetchUsage;
    }
    Index
    documents: { [key: string]: FetchedDocument }

    A map of document IDs to their fetched documents.

    FetchDocumentsResponse

    namespace: string

    The namespace the documents were fetched from.

    FetchDocumentsResponse

    pagination?: Pagination

    FetchDocumentsResponse

    FetchDocumentsResponse