-
-
Notifications
You must be signed in to change notification settings - Fork 45
[AIBundle] Add missing configuration for stores #260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds missing configuration for additional vector stores in the AI Bundle. The PR implements configuration support for 5 new store types (Meilisearch, Memory, Neo4j, Qdrant, and SurrealDB) that were recently added but lacked proper bundle integration.
Key changes:
- Added configuration options for 5 new vector store types
- Updated service container definitions to properly instantiate these stores
- Updated documentation to reflect all supported store types
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
File | Description |
---|---|
src/ai-bundle/config/options.php | Defines configuration schema for new store types with their required and optional parameters |
src/ai-bundle/src/AiBundle.php | Implements service container configuration logic for instantiating the new store types |
src/ai-bundle/tests/DependencyInjection/AiBundleTest.php | Adds test configuration examples for all new store types |
src/ai-bundle/doc/index.rst | Updates documentation comment to list all supported store types |
d92a38a
to
0e976d0
Compare
cc5f5af
to
7882b17
Compare
7882b17
to
ffca876
Compare
Thank you @Guikingone. |
…ngone) This PR was merged into the main branch. Discussion ---------- [AIBundle] fix missing endpoint for Meilisearch store | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | Docs? | no | Issues | #260 | License | MIT Hi 👋🏻 A small fix for the meilisearch store, the endpoint was not sent, tests fixed. Commits ------- c3edd4e fix(ai-bundle): missing endpoint for meilisearch store
Hi 👋🏻
Following the recently merged PR for vector stores, here's the missing configuration for each of them.