Open ThabangLenonyana opened 3 hours ago
As a user, I want to add items to my wishlist using natural language (e.g., "Add milk, bread, and eggs to my grocery list" or "I need some Nike running shoes size 10"), so that I can quickly create lists without browsing through categories.
Create Azure AI Search Service:
Create Azure Language Service:
Create Search Indexes:
example
{ "name": "products-index", "fields": [ { "name": "id", "type": "Edm.String", "key": true }, { "name": "name", "type": "Edm.String", "searchable": true }, { "name": "description", "type": "Edm.String", "searchable": true }, { "name": "category", "type": "Edm.String", "filterable": true }, { "name": "brand", "type": "Edm.String", "filterable": true }, { "name": "price", "type": "Edm.Double", "filterable": true }, { "name": "size", "type": "Edm.String", "filterable": true }, { "name": "color", "type": "Edm.String", "filterable": true } ] }```
Wishlist/Grocery List Feature
User Story
As a user, I want to add items to my wishlist using natural language (e.g., "Add milk, bread, and eggs to my grocery list" or "I need some Nike running shoes size 10"), so that I can quickly create lists without browsing through categories.
High-Level Requirements
Technical Specification
1. Azure Resources
Implementation Steps
Create Azure AI Search Service:
Create Azure Language Service:
Create Search Indexes:
example