Azure cosmos-db vector store maven cleanup (#1631)

- Define the version for Azure Cosmos DB
- Add dependencies for the azure-cosmos-db-store module and boot starter
- Include the artifacts in spring-ai-bom

Signed-off-by: jitokim <pigberger70@gmail.com>
This commit is contained in:
jito
2024-10-31 06:07:13 +09:00
committed by GitHub
parent d8f7ddb72c
commit 1e980d13b2
3 changed files with 14 additions and 1 deletions

View File

@@ -205,6 +205,7 @@
<pinecone.version>0.8.0</pinecone.version>
<fastjson.version>2.0.46</fastjson.version>
<azure-search.version>11.6.1</azure-search.version>
<azure-cosmos.version>5.17.1</azure-cosmos.version>
<weaviate-client.version>4.5.1</weaviate-client.version>
<qdrant.version>1.9.1</qdrant.version>
<typesense.version>0.5.0</typesense.version>

View File

@@ -183,6 +183,12 @@
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-azure-cosmos-db-store</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-cassandra-store</artifactId>
@@ -293,6 +299,12 @@
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-azure-cosmos-db-store-spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-azure-openai-spring-boot-starter</artifactId>

View File

@@ -45,7 +45,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-spring-data-cosmos</artifactId>
<version>LATEST</version>
<version>${azure-cosmos.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.ai</groupId>