Composite embedders #816
dureuill
started this conversation in
Experimental features
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Meilisearch v1.14 (to be released on April 14th 2025) introduces composite embedders:
"composite"
, with two new parameters:searchEmbedder
andindexingEmbedder
, to specify two embedders to be used respectively at search/indexing time.How to use the feature?
Please refer to the public API page
What is an experimental feature
By enabling this feature via the
/experimental-features
route, you opt into the following:You can use this feature in production, but be prepared to update your code from one version to the next.
Why is this feature not stable yet?
🗣️ You are welcome to give feedback about the score details or ask any question on its usage; we are eager to collect feedback on the feature
To fully disable the feature, you need to delete all the composite embedders in you
embedders
settings. To remove an embedder, set it tonull
in aPATCH
settings call:{ "embedders: { "YOUR_EMBEDDER_NAME": null } }
.When all composite embedders have been removed from all indexes, call the experimental feature route to set
compositeEmbedders
tofalse
.Beta Was this translation helpful? Give feedback.
All reactions