-
Notifications
You must be signed in to change notification settings - Fork 245
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
Create new “How to tell if a REST embedder is compatible with Meilisearch” guide #3041
Comments
I'm not sure I understand the question. Can you elaborate on which "other applications" you're thinking of?
When indexing, Meilisearch will attempt to make up to 40 requests in parallel, which is enough to reach most rate limits.
For the OpenAI embedder, Meilisearch supports retrying when the input is too long. For other embedders, the behavior on inputs that are too long to embed will be embedder-specific, and Meilisearch does not implement any logic to accommodate this case, which will likely result in a failed indexing operation. Therefore, the user should take care not to cause any failure related to a too large input. Meilisearch provides a way to truncate the rendered document template to a fixed number of bytes (the default is 400 bytes). Regarding authentication, the It is possible to accommodate non-standard authentication schemes with the custom headers parameter of the REST embedder. |
Thanks, @dureuill!
What I mean is: if I have used e.g. Mistral with Algolia, will it be pretty much the same thing if I use Mistral with Meilisearch? Are there any specific adaptations I need to make when using Mistral with Meilisearch besides complying with our API? E.g. an extra preprocessing step prior to submitting documents for vectorization? |
Alright, I see what you mean, but we need to investigate to create this kind of knowledge. We also need to keep in mind that other applications are evolving over time. |
Recent customer feedback indicates users are struggling to move beyond the basic AI-powered search tutorial and implement hybrid search in their own projects. One specific thing users who are already familiar with LLMs struggle with is knowing whether their specific embedder is compatible with Meilisearch.
We should write a guide defining minimum requirements and what meilisearch looks for when sending documents and receiving vectors.
The text was updated successfully, but these errors were encountered: