UNPKG

@gravityai-dev/pinecone

Version:

Pinecone vector database nodes for GravityWorkflow - knowledge management and vector operations

14 lines 1.13 kB
/** * Pinecone service - modular exports */ export { initializePinecone, initializePineconeWithContext } from './client'; export { deleteAllVectors, deleteAllVectorsFromNamespace, deleteAllVectorsFromNamespaceWithContext } from './operations/delete'; export { deleteChunkedVector, deleteMultipleChunkedVectors } from './operations/deleteChunked'; export { upsertVectorsInBatches } from './operations/upsert'; export { fetchAllVectors } from './operations/fetch'; export { queryVectors, type QueryConfig, type QueryResult } from './operations/query'; export { loadVectorsForEditingWithContext, loadVectorsForEditing, saveVectorsWithEmbeddingsWithContext, saveVectorsWithEmbeddings } from './operations/vectors'; export { chunkText, fixedSizeChunking, sentenceBasedChunking, paragraphBasedChunking, type ChunkingOptions, type TextChunk } from './chunking/strategies'; export { uploadTextWithEmbeddings, uploadSingleVector, type UploadWithEmbeddingOptions } from './embeddings/upload'; export { queryWithText, type QueryWithTextOptions, type QueryWithTextResult } from './embeddings/query'; //# sourceMappingURL=index.d.ts.map