You may be looking to create a 'Complete the Look' experience that suggests complementary products from different categories when a customer views a product detail page? There is no specific 'Complete the Look" model available for Recommend, but here are a couple of existing tools you can use to achieve this with the models that are available:
-
Content-based filtering for Related Items on Recommend
- to achieve this, you will need to have a shared attribute indexed on all your products (i.e.
completeTheLook:1234_4567
) and make sure that this attribute holds the same value for the products you want to present together.
- to achieve this, you will need to have a shared attribute indexed on all your products (i.e.
-
Looking Similar on Recommend
- where the model will group together products that are related to each other based on the images provided in your index.
- you can choose to index a specific image attribute per record to help the model group together items for the same "look"
- Retrieve the Complete-the-look products from a second query
- in this case you will need to have a shared attribute like
completeTheLook
as described above and declared as an attribute for faceting. - You can now send a new second query with a filter (i.e
filters:'completeTheLook:value'
) where the value would be determined by the viewed product details, to retrieve the list of complimentary products.
- in this case you will need to have a shared attribute like