Skip to content

Commit 2f5c285

Browse files
address reviewer feedback, plus tighten terminology
1 parent 24f8640 commit 2f5c285

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

config/sidebar-learn.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
"slug": "choose_an_embedder"
5656
},
5757
{
58-
"source": "learn/ai_powered_search/multimodal.mdx",
58+
"source": "learn/ai_powered_search/image_search_with_user_provided_embeddings.mdx",
5959
"label": "Image search with user-provided embeddings",
60-
"slug": "multimodal_search"
60+
"slug": "image_search_with_user_provided_embeddings"
6161
},
6262
{
6363
"source": "learn/ai_powered_search/difference_full_text_ai_search.mdx",

learn/ai_powered_search/multimodal.mdx renamed to learn/ai_powered_search/image_search_with_user_provided_embeddings.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Image search with user-provided embeddings — Meilisearch documentation
3-
description: This article shows you the main steps for searching through images with no associated metadata
3+
description: This article shows you the main steps for performing multimodal text-to-image searches
44
---
55

66
# Image search with user-provided embeddings
@@ -11,17 +11,17 @@ This article shows you the main steps for performing multimodal searches where y
1111

1212
- A database of images
1313
- A Meilisearch project
14-
- An embedding generation tool you can install locally
14+
- An embedding generation provider you can install locally
1515

1616
## Configure your local embedding generation pipeline
1717

18-
First, set up a system that sends your images to your chosen embedding generation tool.
18+
First, set up a system that sends your images to your chosen embedding generation provider, then integrates the returned embeddings into your dataset.
1919

2020
The exact procedure depends heavily on your specific setup, but should include these main steps:
2121

22-
1. Choose a tool you can run locally
22+
1. Choose a provider you can run locally
2323
2. Choose a model that supports both image and text input
24-
3. Send your images to the embedding generation tool
24+
3. Send your images to the embedding generation provider
2525
4. Add the returned embeddings to the `_vector` field for each image in your database
2626

2727
In most cases your system should run these steps periodically or whenever you update your database.
@@ -57,8 +57,8 @@ In most cases, you should automate this step so Meilisearch is up to date with y
5757
Since you are using a `userProvided` embedder, you must also generate the embeddings for the search query. This process should be similar to generating embeddings for your images:
5858

5959
1. Receive user query from your front-end
60-
2. Vectorize query with your local embedding provider
61-
3. Perform search using the vectorized query
60+
2. Send query to your local embedding generation provider
61+
3. Perform search using the returned query embedding
6262

6363
## Vector search with user-provided embeddings
6464

@@ -93,7 +93,7 @@ curl -X POST -H 'content-type: application/json' \
9393

9494
## Conclusion
9595

96-
You have seen the main steps for implementing multimodal search with Meilisearch:
96+
You have seen the main steps for implementing image search with Meilisearch:
9797

9898
1. Prepare a pipeline that converts your images into vectors
9999
2. Index the vectorized images with Meilisearch

0 commit comments

Comments
 (0)