File size: 693 Bytes
efdcdc4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
def suggest_items(query):
    query = query.lower()
    if "gift" in query and "500" in query:
        return (
            "🎁 Gift Suggestions under ₹500:\n"
            "1. Bath & Body Gift Set - ₹499\n"
            "2. Mini Perfume Pack - ₹349\n"
            "3. Skin Care Hamper - ₹399\n"
            "4. Chocolates Gift Box - ₹299"
        )
    if "shampoo" in query and "dry" in query:
        return (
            "🧴 Shampoos for Dry Hair:\n"
            "1. Dove 500 ml - ₹325\n"
            "2. Clinic Plus 500 ml - ₹680"
        )
    return "🤷 Sorry, no smart suggestions found. Try asking: 'Gift items under 500' or 'Shampoo for dry hair'"