get_customer_recommendations
Generate personalized art supply recommendations for customers based on their purchase history and preferences to enhance shopping experience and increase sales.
Instructions
Get personalized product recommendations based on customer purchase history and preferences.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customerId | Yes | Customer ID |
Input Schema (JSON Schema)
{
"properties": {
"customerId": {
"description": "Customer ID",
"type": "string"
}
},
"required": [
"customerId"
],
"type": "object"
}