Class VespaEmbeddingStore
java.lang.Object
dev.langchain4j.store.embedding.vespa.VespaEmbeddingStore
- All Implemented Interfaces:
EmbeddingStore<TextSegment>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionadd(Embedding embedding, TextSegment textSegment) voidAdds a new embedding with provided ID to the store.addAll(List<Embedding> embeddings, List<TextSegment> embedded) findRelevant(Embedding referenceEmbedding, int maxResults, double minScore) The score insideEmbeddingMatchis Vespa relevance according to provided rank profile.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface dev.langchain4j.store.embedding.EmbeddingStore
findRelevant, findRelevant, findRelevant, search
-
Constructor Details
-
VespaEmbeddingStore
public VespaEmbeddingStore(String url, String keyPath, String certPath, Duration timeout, String namespace, String documentType, String rankProfile, Integer targetHits, Boolean avoidDups) Creates a new VespaEmbeddingStore instance.- Parameters:
url- server url, local or cloud one. The latter you can find under Endpoint of your Vespa application, e.g. https://alexey-heezer.langchain4j.mytenant346.aws-us-east-1c.dev.z.vespa-app.cloud/keyPath- local path to the SSL private key file in PEM format. Read docs for details.certPath- local path to the SSL certificate file in PEM format. Read docs for details.timeout- for Vespa Java client injava.time.Durationformat.namespace- required for document ID generation, find more details here.documentType- document type, used for document ID generation, find more details here and data queryingrankProfile- rank profile from your .sd schema. Provided example schema configures cosine similarity matchtargetHits- sets the number of hits (10 is default) exposed to the real Vespa's first-phase ranking function per content node, find more details here.avoidDups- if true (default), thenVespaEmbeddingStorewill generate a hashed ID based on provided text segment, which avoids duplicated entries in DB. If false, then random ID will be generated.
-
-
Method Details
-
add
- Specified by:
addin interfaceEmbeddingStore<TextSegment>
-
add
Adds a new embedding with provided ID to the store.- Specified by:
addin interfaceEmbeddingStore<TextSegment>- Parameters:
id- "user-specified" part of document ID, find more details hereembedding- the embedding to add
-
add
- Specified by:
addin interfaceEmbeddingStore<TextSegment>
-
addAll
- Specified by:
addAllin interfaceEmbeddingStore<TextSegment>
-
addAll
- Specified by:
addAllin interfaceEmbeddingStore<TextSegment>
-
findRelevant
public List<EmbeddingMatch<TextSegment>> findRelevant(Embedding referenceEmbedding, int maxResults, double minScore) The score insideEmbeddingMatchis Vespa relevance according to provided rank profile.- Specified by:
findRelevantin interfaceEmbeddingStore<TextSegment>
-