The prototype is available through Docker by using the following command:

docker run -p 7700:7700 -v $(pwd)/meili_data:/meili_data getmeili/meilisearch:prototype-vector-store-1

You can directly send this JSON query to POST /indexes/{index}/search.

{
  "boostingFilter": "id IN [23, 24, 25]"
}

And the engine will move the matching documents up. If you enable the score details, you will even have a way to know why your documents were moved above others or not.

"_rankingScoreDetails": {
    "filterBoosting": {
        "matching": false
    }
}