Update vector store docs for Spring AI starters
Signed-off-by: Ilayaperumal Gopinathan <ilayaperumal.gopinathan@broadcom.com>
This commit is contained in:
committed by
Mark Pollack
parent
ce00204914
commit
2d778e8a0c
@@ -72,7 +72,7 @@ Add these dependencies to your project:
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-cassandra-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-cassandra</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@ Add the following dependency to your Maven project:
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-azure-cosmos-db-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-azure-cosmos-db</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-chroma-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-chroma</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -31,7 +31,7 @@ or to your Gradle `build.gradle` build file.
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-chroma-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-chroma'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ Maven::
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-elasticsearch-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-elasticsearch</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -35,7 +35,7 @@ Gradle::
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-elasticsearch-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-elasticsearch'
|
||||
}
|
||||
----
|
||||
======
|
||||
|
||||
@@ -22,7 +22,7 @@ Add the GemFire VectorStore Spring Boot starter to you project's Maven build fil
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-gemfire-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-gemfire</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -31,7 +31,7 @@ or to your Gradle `build.gradle` file
|
||||
[source, xml]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-gemfire-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-gemfire'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-hanadb-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-hana</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -24,7 +24,7 @@ or to your Gradle `build.gradle` build file.
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-hanadb-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-hana'
|
||||
}
|
||||
----
|
||||
|
||||
@@ -104,7 +104,7 @@ You may set the property `spring-ai-version` as `<spring-ai-version>1.0.0-SNAPSH
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-hanadb-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-hana</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
@@ -22,7 +22,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-mariadb-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-mariadb</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -31,7 +31,7 @@ or to your Gradle `build.gradle` build file.
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-mariadb-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-mariadb'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ Then add the Milvus VectorStore boot starter dependency to your project:
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-milvus-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-milvus</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -26,7 +26,7 @@ or to your Gradle `build.gradle` build file.
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-milvus-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-milvus'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-mongodb-atlas-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-mongodb-atlas</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -36,7 +36,7 @@ or to your Gradle `build.gradle` build file:
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-mongodb-atlas-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-mongodb-atlas'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-neo4j-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-neo4j</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -38,7 +38,7 @@ or to your Gradle `build.gradle` build file.
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-neo4j-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-neo4j'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-opensearch-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-opensearch</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -31,7 +31,7 @@ or to your Gradle `build.gradle` build file:
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-opensearch-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-opensearch'
|
||||
}
|
||||
----
|
||||
|
||||
@@ -43,7 +43,7 @@ For Amazon OpenSearch Service, use these dependencies instead:
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-aws-opensearch-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-opensearch</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -52,7 +52,7 @@ or for Gradle:
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-aws-opensearch-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-opensearch'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ Start by adding the Oracle Vector Store boot starter dependency to your project:
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-oracle-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-oracle</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -21,7 +21,7 @@ or to your Gradle `build.gradle` build file.
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-oracle-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-oracle'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ Then add the PgVectorStore boot starter dependency to your project:
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-pgvector-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-pgvector</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -51,7 +51,7 @@ or to your Gradle `build.gradle` build file.
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-pgvector-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-pgvector'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-pinecone-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-pinecone</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -41,7 +41,7 @@ or to your Gradle `build.gradle` build file.
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-pinecone-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-pinecone'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-qdrant-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-qdrant</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -30,7 +30,7 @@ or to your Gradle `build.gradle` build file.
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-qdrant-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-qdrant'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-redis-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-redis</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -37,7 +37,7 @@ or to your Gradle `build.gradle` build file.
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-redis-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-redis'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ To enable it add the following dependency to your project's Maven `pom.xml` file
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-typesense-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-typesense</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -29,7 +29,7 @@ or to your Gradle `build.gradle` build file.
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-typesense-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-typesense'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -73,7 +73,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-weaviate-store-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-starter-vector-store-weaviate</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -82,7 +82,7 @@ or to your Gradle `build.gradle` build file.
|
||||
[source,groovy]
|
||||
----
|
||||
dependencies {
|
||||
implementation 'org.springframework.ai:spring-ai-weaviate-store-spring-boot-starter'
|
||||
implementation 'org.springframework.ai:spring-ai-starter-vector-store-weaviate'
|
||||
}
|
||||
----
|
||||
|
||||
|
||||
@@ -278,7 +278,7 @@ Renamed POM artifact names:
|
||||
- spring-ai-qdrant -> spring-ai-qdrant-store
|
||||
- spring-ai-gemfire -> spring-ai-gemfire-store
|
||||
- spring-ai-azure-vector-store-spring-boot-starter -> spring-ai-azure-store-spring-boot-starter
|
||||
- spring-ai-redis-spring-boot-starter -> spring-ai-redis-store-spring-boot-starter
|
||||
- spring-ai-redis-spring-boot-starter -> spring-ai-starter-vector-store-redis
|
||||
|
||||
== Upgrading to 0.8.1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user