Uses of Interface
dev.langchain4j.store.embedding.EmbeddingStore
Packages that use EmbeddingStore
-
Uses of EmbeddingStore in dev.langchain4j.rag.content.retriever
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.store.embedding
Methods in dev.langchain4j.store.embedding with parameters of type EmbeddingStoreModifier and TypeMethodDescriptionEmbeddingStoreIngestor.Builder.embeddingStore(EmbeddingStore<TextSegment> embeddingStore) Sets the embedding store.Constructors in dev.langchain4j.store.embedding with parameters of type EmbeddingStoreModifierConstructorDescriptionEmbeddingStoreIngestor(DocumentTransformer documentTransformer, DocumentSplitter documentSplitter, TextSegmentTransformer textSegmentTransformer, EmbeddingModel embeddingModel, EmbeddingStore<TextSegment> embeddingStore) Creates a new EmbeddingStoreIngestor.