Find similar wines ("more like this")
find_similar_winesGiven a registry wine_id (or, on an authenticated connection, one of the user's bottle_ids), returns wines with the closest taste/style profile from the shared registry, using vector similarity over wine embeddings. Call for "more like this", "what else is like my favourite Barolo", or to seed purchase ideas from a wine the user loves. Only wines that have been embedded are searchable — an empty result does not mean nothing similar exists. Ids must be 24-hex Mongo ids from search_registry or search_bottles — a name or slug is not an id. Returns at most 10.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many to return (1-10, default 8; larger values are capped, not rejected) | |
| wine_id | No | Registry wine id (24-hex) from search_registry or a bottle's wine | |
| bottle_id | No | Alternatively: one of the user's bottle ids (24-hex). Needs an authenticated connection — not available on the public endpoint. |