Composite embedders #816
Replies: 1 comment 4 replies
-
|
Hi, thank you so much for your work on Meilisearch. The vector/hybrid search has a great developer UX. I ran into an issue regarding composite embedders as I am currently maintaining a database with a large number of already chunked and embedded documents. I am importing them in a Meilisearch index so my embeddings are Turns out it's not possible to have a composite embedder with Let me know if you want a separate discussion thread for this specific issue. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Meilisearch v1.14 (to be released on April 14th 2025) introduces composite embedders:
"composite", with two new parameters:searchEmbedderandindexingEmbedder, 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-featuresroute, 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
embedderssettings. To remove an embedder, set it tonullin aPATCHsettings call:{ "embedders: { "YOUR_EMBEDDER_NAME": null } }.When all composite embedders have been removed from all indexes, call the experimental feature route to set
compositeEmbedderstofalse.Beta Was this translation helpful? Give feedback.
All reactions