Skip to content

Commit 60b4f45

Browse files
improve wording
1 parent 6fe03bd commit 60b4f45

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

learn/personalization/making_personalized_search_queries.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Performing personalized search queries
3-
description: Search personalization uses context about the person performing the search to provide results more relevant to that specific user. This tutorial guides you through configuring and performing personalized search queries.
3+
description: Search personalization uses context about the person performing the search to provide results more relevant to that specific user. This article guides you through configuring and performing personalized search queries.
44
---
55

66
## Requirements
@@ -26,20 +26,20 @@ meilisearch --experimental-personalization-api-key="COHERE_API_KEY"
2626

2727
Search personalization requires a description about the user performing the search. Meilisearch does not currently provide automated generation of user context.
2828

29-
You’ll need to **generate a dynamically plain-text user description** for each search request. This should summarize relevant traits, such as:
29+
You’ll need to **dynamically generate a plain-text user description** for each search request. This should summarize relevant traits, such as:
3030

31-
- Category preferences like brand and size
32-
- Price sensitivity
33-
- Possible use cases
34-
- Other information regarding user interests
31+
- Category preferences, like brand or size
32+
- Price sensitivity, like budget-conscious
33+
- Possible use cases, such as fitness and sport
34+
- Other assorted information, such as general interests or location
3535

3636
The re-ranking model is optimized to favor positive signals. For best results, focus on affirmatively stated preferences, behaviors, and affinities, such as "likes the color red" and "prefers cheaper brands" over "dislikes blue" and "is not interested in luxury brands".
3737

3838
## Perform a personalized search
3939

4040
Once search personalization is active and you have a pipeline in place to generate user profiles, you are ready to perform personalized searches.
4141

42-
Submit a search query and include the `personalize` search parameter in your query. `personalize` must be an object with a single field, `userContext`. Use the description in `userContext`:
42+
Submit a search query and include the `personalize` search parameter. `personalize` must be an object with a single field, `userContext`. Use the description you generated in the previous step as the value for `userContext`:
4343

4444
```sh
4545
curl \

0 commit comments

Comments
 (0)