Uses of Interface
dev.langchain4j.store.embedding.EmbeddingStore
Packages that use EmbeddingStore
Package
Description
-
Uses of EmbeddingStore in dev.langchain4j.rag.content.retriever
Methods in dev.langchain4j.rag.content.retriever with parameters of type EmbeddingStoreModifier and TypeMethodDescriptionEmbeddingStoreContentRetriever.from(EmbeddingStore<TextSegment> embeddingStore) Creates an instance of anEmbeddingStoreContentRetrieverfrom the specifiedEmbeddingStoreandEmbeddingModelfound through SPI (seeEmbeddingModelFactory).Constructors in dev.langchain4j.rag.content.retriever with parameters of type EmbeddingStoreModifierConstructorDescriptionEmbeddingStoreContentRetriever(EmbeddingStore<TextSegment> embeddingStore, EmbeddingModel embeddingModel) EmbeddingStoreContentRetriever(EmbeddingStore<TextSegment> embeddingStore, EmbeddingModel embeddingModel, int maxResults) EmbeddingStoreContentRetriever(EmbeddingStore<TextSegment> embeddingStore, EmbeddingModel embeddingModel, Integer maxResults, Double minScore) -
Uses of EmbeddingStore in dev.langchain4j.retriever
Methods in dev.langchain4j.retriever with parameters of type EmbeddingStoreModifier and TypeMethodDescriptionstatic EmbeddingStoreRetrieverEmbeddingStoreRetriever.from(EmbeddingStore<TextSegment> embeddingStore, EmbeddingModel embeddingModel) Deprecated.static EmbeddingStoreRetrieverEmbeddingStoreRetriever.from(EmbeddingStore<TextSegment> embeddingStore, EmbeddingModel embeddingModel, int maxResults) Deprecated.static EmbeddingStoreRetrieverEmbeddingStoreRetriever.from(EmbeddingStore<TextSegment> embeddingStore, EmbeddingModel embeddingModel, int maxResults, double minScore) Deprecated.Constructors in dev.langchain4j.retriever with parameters of type EmbeddingStoreModifierConstructorDescriptionEmbeddingStoreRetriever(EmbeddingStore<TextSegment> embeddingStore, EmbeddingModel embeddingModel, int maxResults, Double minScore) Deprecated. -
Uses of EmbeddingStore in dev.langchain4j.store.embedding
Methods in dev.langchain4j.store.embedding with parameters of type EmbeddingStoreModifier and TypeMethodDescriptionEmbeddingStoreIngestor.Builder.embeddingStore(EmbeddingStore<TextSegment> embeddingStore) Sets the embedding store.static voidEmbeddingStoreIngestor.ingest(Document document, EmbeddingStore<TextSegment> embeddingStore) Ingests a specifiedDocumentinto a specifiedEmbeddingStore.static voidEmbeddingStoreIngestor.ingest(List<Document> documents, EmbeddingStore<TextSegment> embeddingStore) Ingests specifiedDocuments into a specifiedEmbeddingStore.Constructors in dev.langchain4j.store.embedding with parameters of type EmbeddingStoreModifierConstructorDescriptionEmbeddingStoreIngestor(DocumentTransformer documentTransformer, DocumentSplitter documentSplitter, TextSegmentTransformer textSegmentTransformer, EmbeddingModel embeddingModel, EmbeddingStore<TextSegment> embeddingStore) Creates an instance of anEmbeddingStoreIngestor.