RetailGenie / utils /suggest_utils.py
Parishri07's picture
Upload 7 files
efdcdc4 verified
raw
history blame contribute delete
693 Bytes
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'"