Migrate vector store auto-configurations to dedicated modules#2391
Closed
sobychacko wants to merge 1 commit intospring-projects:refactor-startersfrom
Closed
Migrate vector store auto-configurations to dedicated modules#2391sobychacko wants to merge 1 commit intospring-projects:refactor-startersfrom
sobychacko wants to merge 1 commit intospring-projects:refactor-startersfrom
Conversation
Move vector store auto-configuration classes to dedicated modules under auto-configurations/vector-stores/: - Creates separate modules for Cassandra, Chroma, Elasticsearch, GemFire, HanaDB, MariaDB, MongoDB Atlas, Neo4j, OpenSearch, Oracle, PGVector, and Redis vector stores - Updates package names to follow the pattern org.springframework.ai.vectorstore.<implementation>.autoconfigure - Renames corresponding starter modules to follow the pattern spring-ai-starter-vector-store-<implementation> - Updates import paths in affected classes - Relocates test resources alongside their respective implementations - Updates imports in spring-ai-spring-boot-docker-compose and spring-ai-spring-boot-testcontainers This change improves modularity by allowing each vector store implementation to be independently versioned and maintained, following the migration pattern established with previous vector store autoconfiguraiton and starters . Signed-off-by: Soby Chacko <soby.chacko@broadcom.com>
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.springframework.ai</groupId> |
Member
There was a problem hiding this comment.
Duplicate entries of tool and openai dependencies. I will remove them when merging.
Member
|
Rebased and merged as cbe0fec |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Move vector store auto-configuration classes to dedicated modules under auto-configurations/vector-stores/:
This change improves modularity by allowing each vector store implementation to be independently versioned and maintained, following the migration pattern established with previous vector store autoconfiguration and starters.