Uses of Class
dev.langchain4j.store.embedding.oracle.OracleEmbeddingStore.Builder
-
Uses of OracleEmbeddingStore.Builder in dev.langchain4j.store.embedding.oracle
Modifier and TypeMethodDescriptionstatic OracleEmbeddingStore.Builder
OracleEmbeddingStore.builder()
Returns a builder which configures and creates instances ofOracleEmbeddingStore
.OracleEmbeddingStore.Builder.dataSource
(DataSource dataSource) Configures a data source that connects to an Oracle Database.OracleEmbeddingStore.Builder.embeddingTable
(EmbeddingTable embeddingTable) Configures a table used to store embeddings, text, and metadata.OracleEmbeddingStore.Builder.embeddingTable
(String tableName) Configures the name of a table used to store embeddings, text, and metadata.OracleEmbeddingStore.Builder.embeddingTable
(String tableName, CreateOption createOption) Configures the name of table used to store embeddings, text, and metadata.OracleEmbeddingStore.Builder.exactSearch
(boolean isExactSearch) Configures the embedding store to use exact or approximate similarity search.OracleEmbeddingStore.Builder.vectorIndex
(CreateOption createOption) Configures the creation of an index on the embedding column of theEmbeddingTable
used by the embedding store.