Our Launch Week just wrapped up šŸ”„ See the full release

Go to homeMeilisearch's logo
Back to articles

Meilisearch 1.7

Meilisearch 1.7 stabilizes ranking score details, adds GPU support for Hugging Face embeddings, and integrates the latest OpenAI embedding models.

12 Mar 20242 min read
Laurent Cazanove
Laurent CazanoveDeveloper Experience Engineer@StriftCodes
Meilisearch 1.7

We're excited to unveil Meilisearch v1.7. In this article, we’ll review the most impactful changes. For an exhaustive listing, check out the changelog on Github.

Meilisearch 1.7 is available on Meilisearch Cloud too—upgrade now!

AI search is an experimental feature, read the docs to enable AI search.

New OpenAI embedding models

Starting with Meilisearch 1.7, you can use OpenAI’s third-generation embedding models:

  • text-embedding-3-small
  • text-embedding-3-large

Compared to the previous text-embedding-ada-002 model, these new models offer improvements allowing to balance search results relevancy and cost efficiency.

The small model is more cost-effective, generating smaller vector embeddings that require less storage. The large focuses on delivering higher precision in search results, making it ideal to optimize relevancy.

Configuring OpenAI model dimensions

When using the new text-embedding-3-smallĀ andĀ text-embedding-3-large OpenAI models, you can now configure dimensions for your model. When not provided, the model's defaults dimensions are used.

You can do so when updating your settings:

{
  // other settings...

  "embedders": {
    "small": {
      "source": "openAi",
      "model": "text-embedding-3-large",
      "dimensions": 512 // must be >0, must be <= 3072 for "text-embedding-3-large"
    },
  }
}

Higher dimensions typically offer more complex embeddings which can lead to more accurate search results. However, increased dimensions are more costly to compute and require more storage.

You cannot customize dimensions when using OpenAI text-embedding-ada-002.

Use AI Search on Meilisearch Cloud

Meilisearch hybrid search and vector search are coming to Meilisearch Cloud. We're rolling out invites every day. Join the beta. šŸ‘‡

Get early access

GPU support for computing Hugging Face embeddings

Meilisearch 1.7 comes with the ability to enable GPU support for self-hosted Meilisearch for computing Hugging Face embeddings. This can significantly speed up the embedding generation process.

Find detailed instructions in our dedicated guide on Using GPU to compute Hugging Face embeddings.

Meilisearch 1.7 stabilizes the showRankingScoreDetails search parameter that was introduced in [Meilisearch 1.3](/blog/v1-3-release/?utm_campaign=release-v1-7&utm_source=blog This parameter adds a _rankingScoreDetails field to each document in search results, enabling further inspection of the search results.

You can include the parameter when making searches:

curl 
  -X POST 'https://edge.meilisearch.com/indexes/movies/search' 
  -H 'Content-Type: application/json' 
  --data-binary '{
    "q": "batman",
    "showRankingScoreDetails": true
  }'

Learn more about the _rankingScoreDetails object and how to use it with your preferred SDK in the API reference.

Contributors shout-out

We want to give a massive thank you to all contributors that made this release possible: @capJavert,Ā @codesmith-emmy,Ā @Elliot67Ā andĀ @Gosti for their PRs in Meilisearch, and @agourlay,Ā @choznerol,Ā @ngdbao,Ā @timvisee, andĀ @xshadowlegendx for their work on charabia.

Special thanks to our SDKs maintainers, thanks to whom Meilisearch is available across so many languages. 🫶


And that’s a wrap for v1.7! This release post highlights the most significant updates. For an exhaustive listing, read the changelog on Github.

Stay in the loop of everything Meilisearch by subscribing to our newsletter. To learn more about Meilisearch's future and help shape it, take a look at ourĀ roadmapĀ and come participate in ourĀ Product Discussions.

For anything else, join our developers community onĀ Discord.

Launch Week wrap-up: everything that shipped in five days, April 2026

Launch Week wrap-up: everything that shipped in five days, April 2026

Everything from Meilisearch Launch Week, in one place. Five days, every release, who it's for.

Maya Shin
Maya Shin20 Apr 2026
Conversational search, out of the box: Meilisearch Chat in Cloud UI

Conversational search, out of the box: Meilisearch Chat in Cloud UI

Meilisearch Cloud now ships a built-in chat UI. Select an index, get an auto-generated system prompt, guardrails, and an inspector tab to debug - no separate AI pipeline required.

Maya Shin
Maya Shin15 Apr 2026
Scale without limits: introducing sharding & replication in Meilisearch Cloud

Scale without limits: introducing sharding & replication in Meilisearch Cloud

Meilisearch Cloud now supports sharding and replication - letting your search infrastructure scale horizontally, stay available during updates, and serve users from the nearest node. Here is what that means and who it is for.

Maya Shin
Maya Shin13 Apr 2026