make project names consistent
This commit is contained in:
committed by
Christian Tzolov
parent
c5b7dd9c46
commit
04d854cc49
@@ -11,6 +11,8 @@
|
||||
|
||||
<artifactId>spring-ai-watsonx-ai</artifactId>
|
||||
|
||||
<name>Spring AI WatsonX AI</name>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
|
||||
4
pom.xml
4
pom.xml
@@ -57,8 +57,8 @@
|
||||
<module>document-readers/tika-reader</module>
|
||||
<module>vector-stores/spring-ai-pinecone</module>
|
||||
<module>vector-stores/spring-ai-chroma-store</module>
|
||||
<module>vector-stores/spring-ai-azure-vector-store</module>
|
||||
<module>vector-stores/spring-ai-weaviate</module>
|
||||
<module>vector-stores/spring-ai-azure-store</module>
|
||||
<module>vector-stores/spring-ai-weaviate-store</module>
|
||||
<module>vector-stores/spring-ai-redis</module>
|
||||
<module>vector-stores/spring-ai-gemfire</module>
|
||||
<module>spring-ai-spring-boot-starters/spring-ai-starter-vertex-ai-palm2</module>
|
||||
|
||||
@@ -8,10 +8,10 @@
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<artifactId>spring-ai-azure-vector-store</artifactId>
|
||||
<artifactId>spring-ai-azure-store</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI - Azure AI Search Vector Store</name>
|
||||
<description>Spring AI - Azure AI Search Vector Store</description>
|
||||
<name>Spring AI Vector Store - Azure AI Search </name>
|
||||
<description> Spring AI Vector Store - Azure AI Search </description>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
@@ -10,7 +10,7 @@
|
||||
</parent>
|
||||
<artifactId>spring-ai-chroma-store</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Chroma Vector Store</name>
|
||||
<name>Spring AI Vector Store - Chroma</name>
|
||||
<description>Spring AI Chroma Vector Store</description>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ import java.util.*;
|
||||
* for embedding calculations. For more information about how it does this, see the
|
||||
* official <a href="https://www.trychroma.com/">Chroma website</a>.
|
||||
*
|
||||
* @author Josh Long
|
||||
*
|
||||
*/
|
||||
public class ChromaVectorStore implements VectorStore, ApplicationListener<ApplicationReadyEvent> {
|
||||
|
||||
|
||||
@@ -10,8 +10,8 @@
|
||||
</parent>
|
||||
<artifactId>spring-ai-milvus-store</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Milvus Vector Store</name>
|
||||
<description>Spring AI Milvus Vector Store</description>
|
||||
<name>Spring AI Vector Store - Milvus</name>
|
||||
<description>Spring AI Vector Store - Milvus </description>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
|
||||
@@ -10,8 +10,8 @@
|
||||
</parent>
|
||||
<artifactId>spring-ai-mongodb-atlas-store</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI MongoDB Atlas Vector Store</name>
|
||||
<description>Spring AI MongoDB Atlas Vector Store</description>
|
||||
<name>Spring AI Vector Store - MongoDB Atlas </name>
|
||||
<description>Spring AI Vector Store - MongoDB Atlas</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
</parent>
|
||||
<artifactId>spring-ai-neo4j-store</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Vector Store - neo4j</name>
|
||||
<name>Spring AI Vector Store - Neo4J</name>
|
||||
<description>Spring AI Neo4j Vector Store</description>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
</parent>
|
||||
<artifactId>spring-ai-pgvector-store</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Vector Store - pgvector</name>
|
||||
<name>Spring AI Vector Store - PGVector</name>
|
||||
<description>Spring AI PGVector Vector Store</description>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
|
||||
@@ -10,8 +10,7 @@
|
||||
</parent>
|
||||
<artifactId>spring-ai-pinecone</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>spring-ai-pinecone</name>
|
||||
<description>spring-ai-pinecone</description>
|
||||
<name>Spring AI Vector Store - Pinecone </name>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
|
||||
@@ -10,8 +10,8 @@
|
||||
</parent>
|
||||
<artifactId>spring-ai-qdrant</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>spring-ai-qdrant</name>
|
||||
<description>spring-ai-qdrant</description>
|
||||
<name>Spring AI Vector Store - QDrant</name>
|
||||
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
|
||||
@@ -261,7 +261,6 @@ public class QdrantVectorStore implements VectorStore, ApplicationListener<Appli
|
||||
|
||||
/**
|
||||
* Extracts metadata from a Protobuf Struct.
|
||||
* @param metadataStruct The Protobuf Struct containing metadata.
|
||||
* @return The metadata as a map.
|
||||
*/
|
||||
private Document toDocument(ScoredPoint point) {
|
||||
|
||||
@@ -10,8 +10,8 @@
|
||||
</parent>
|
||||
<artifactId>spring-ai-redis</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>spring-ai-redis</name>
|
||||
<description>Spring AI Redis Vector Store</description>
|
||||
<name>Spring AI Vector Store - Redis </name>
|
||||
<description>Spring AI Vector Store - Redis </description>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
|
||||
@@ -10,8 +10,7 @@
|
||||
</parent>
|
||||
<artifactId>spring-ai-weaviate-store</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>spring-ai-weaviate-store</name>
|
||||
<description>spring-ai-weaviate</description>
|
||||
<name>Spring AI Vector Store - Weaviate </name>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
Reference in New Issue
Block a user