-
Notifications
You must be signed in to change notification settings - Fork 90
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
feat: add proximity precision settings #1619
feat: add proximity precision settings #1619
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.
Thank you Momo!
LGTM
I don't approve because we will need to change the null
value by the "byWord"
one if I'm correct once it's fixed on the engine side
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.
Thank you Momo!
1625: Update version for the next release (v0.37.0) r=brunoocasali a=meili-bot _This PR is auto-generated._ The automated script updates the version of meilisearch-js to a new version: "v0.37.0" 👇 Changelogs --- ## 🚀 Enhancements * Add support for the new setting: `proximityPrecision` (#1619) mdubus ```js client.index('books').getProximityPrecision() client.index('books').updateProximityPrecision('byAttribute') client.index('books').resetProximityPrecision() ``` * Update error inheritance to extend `MeiliSearchError` (#1607) amit-ksh ## 🧪 Experimental enhancement - Hybrid and vector search⚠️ This is about an experimental feature of Meilisearch. Activate the [`vectorStore` experimental feature to use it](https://www.meilisearch.com/docs/reference/api/experimental_features#configure-experimental-features) * Add support for the `embedders` settings (#1623) mdubus ```js client.index('books').getEmbedders() client.index('books').updateEmbedders({ default: { source: 'userProvided', dimensions: 1 }}) client.index('books').resetEmbedders() ``` * Add support for the `hybrid` parameter during search (#1623) mdubus ## ⚙️ Maintenance/misc * Fix test name in error.test.ts (#1609) amit-ksh * Update Jest (#1622) flevi29 Thanks again to amit-ksh, flevi29! 🎉 Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>
Pull Request
What does this PR do?
Introduction of the proximity precision settings:
proximity precision
section + addition of missing links)embedders
object (will come in a specific PR dedicated to the vector search)PR checklist
Please check if your PR fulfills the following requirements:
Thank you so much for contributing to Meilisearch!