Unify the vector store module and pom names
spring-ai-qdrant -> spring-ai-qdrant-store spring-ai-cassandra -> spring-ai-cassandra-store spring-ai-pinecone -> spring-ai-pinecone-store spring-ai-redis -> spring-ai-redis-store 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
This commit is contained in:
@@ -57,7 +57,7 @@ Add these dependencies to your project:
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-cassandra</artifactId>
|
||||
<artifactId>spring-ai-cassandra-store</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
@@ -67,7 +67,7 @@ Add these dependencies to your project:
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-cassandra-spring-boot-starter</artifactId>
|
||||
<artifactId>spring-ai-cassandra-store-spring-boot-starter</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ Add these dependencies to your project:
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-gemfire</artifactId>
|
||||
<artifactId>spring-ai-gemfire-store</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
|
||||
@@ -172,7 +172,7 @@ Add these dependencies to your project:
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-pinecone</artifactId>
|
||||
<artifactId>spring-ai-pinecone-store</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
|
||||
@@ -147,13 +147,13 @@ NOTE: These filter expressions are converted into the equivalent Qdrant link:htt
|
||||
|
||||
== Manual Configuration
|
||||
|
||||
Instead of using the Spring Boot auto-configuration, you can manually configure the `QdrantVectorStore`. For this you need to add the `spring-ai-qdrant` dependency to your project:
|
||||
Instead of using the Spring Boot auto-configuration, you can manually configure the `QdrantVectorStore`. For this you need to add the `spring-ai-qdrant-store` dependency to your project:
|
||||
|
||||
[source,xml]
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-qdrant</artifactId>
|
||||
<artifactId>spring-ai-qdrant-store</artifactId>
|
||||
</dependency>
|
||||
----
|
||||
|
||||
|
||||
@@ -162,7 +162,7 @@ Add the Redis Vector Store and Jedis dependencies
|
||||
----
|
||||
<dependency>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-redis</artifactId>
|
||||
<artifactId>spring-ai-redis-store</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
Reference in New Issue
Block a user