Interface RAGSearchResponse

interface RAGSearchResponse {
    documents: RAGSearchDocument[];
    paging?: PagingInterface;
}

Properties

Properties

documents: RAGSearchDocument[]